本文整理了Java中com.spotify.helios.master.ZooKeeperMasterModel.updateDeployment()
方法的一些代码示例,展示了ZooKeeperMasterModel.updateDeployment()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZooKeeperMasterModel.updateDeployment()
方法的具体详情如下:
包路径:com.spotify.helios.master.ZooKeeperMasterModel
类名称:ZooKeeperMasterModel
方法名:updateDeployment
[英]Used to update the existing deployment of a job.
[中]用于更新作业的现有部署。
代码示例来源:origin: spotify/helios
@Override
public void updateDeployment(String host, Deployment deployment)
throws HostNotFoundException, JobNotDeployedException {
try {
updateDeployment(host, deployment, Job.EMPTY_TOKEN);
} catch (TokenVerificationException e) {
throw new RuntimeException(e);
}
}
代码示例来源:origin: at.molindo/helios-services
@Override
public void updateDeployment(String host, Deployment deployment)
throws HostNotFoundException, JobNotDeployedException {
try {
updateDeployment(host, deployment, Job.EMPTY_TOKEN);
} catch (TokenVerificationException e) {
Throwables.propagate(e);
}
}
内容来源于网络,如有侵权,请联系作者删除!