本文整理了Java中com.netflix.spinnaker.orca.pipeline.model.Stage.setSyntheticStageOwner()
方法的一些代码示例,展示了Stage.setSyntheticStageOwner()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Stage.setSyntheticStageOwner()
方法的具体详情如下:
包路径:com.netflix.spinnaker.orca.pipeline.model.Stage
类名称:Stage
方法名:setSyntheticStageOwner
暂无
代码示例来源:origin: com.netflix.spinnaker.orca/orca-core
@Deprecated
static @Nonnull Stage newStage(
@Nonnull Execution execution,
@Nonnull String type,
@Nullable String name,
@Nonnull Map<String, Object> context,
@Nullable Stage parent,
@Nullable SyntheticStageOwner stageOwner
) {
Stage stage = new Stage(execution, type, name, context);
if (parent != null) {
stage.setParentStageId(parent.getId());
}
stage.setSyntheticStageOwner(stageOwner);
return stage;
}
代码示例来源:origin: com.netflix.spinnaker.orca/orca-core
/**
* Adds a new stage to the graph. By default the new stage is not dependent on any
* others. Use {@link #connect(Stage, Stage)} to make it depend on other stages or
* have other stages depend on it.
*/
public void add(@Nonnull Stage stage) {
stage.setExecution(parent.getExecution());
stage.setParentStageId(parent.getId());
stage.setSyntheticStageOwner(type);
if (graph.addNode(stage)) {
stage.setRefId(generateRefId());
}
lastAdded = stage;
}
代码示例来源:origin: com.netflix.spinnaker.orca/orca-redis
stage.setSyntheticStageOwner(SyntheticStageOwner.valueOf(map.get(prefix + "syntheticStageOwner")));
内容来源于网络,如有侵权,请联系作者删除!