Package com.yahoo.config.application.api
Class DeploymentSpec.ParallelSteps
- java.lang.Object
-
- com.yahoo.config.application.api.DeploymentSpec.Step
-
- com.yahoo.config.application.api.DeploymentSpec.Steps
-
- com.yahoo.config.application.api.DeploymentSpec.ParallelSteps
-
- Enclosing class:
- DeploymentSpec
public static class DeploymentSpec.ParallelSteps extends DeploymentSpec.Steps
A container for multiple other steps, which are executed in parallel
-
-
Constructor Summary
Constructors Constructor Description ParallelSteps(List<DeploymentSpec.Step> steps)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Duration
delay()
The delay introduced by this step (beyond the time it takes to execute the step).boolean
equals(Object o)
int
hashCode()
boolean
isOrdered()
Returns whether the nested steps in this, if any, should be performed in declaration order.String
toString()
-
Methods inherited from class com.yahoo.config.application.api.DeploymentSpec.Steps
concerns, steps, zones
-
Methods inherited from class com.yahoo.config.application.api.DeploymentSpec.Step
concerns, isTest
-
-
-
-
Constructor Detail
-
ParallelSteps
public ParallelSteps(List<DeploymentSpec.Step> steps)
-
-
Method Detail
-
delay
public Duration delay()
Description copied from class:DeploymentSpec.Step
The delay introduced by this step (beyond the time it takes to execute the step).- Overrides:
delay
in classDeploymentSpec.Steps
-
isOrdered
public boolean isOrdered()
Description copied from class:DeploymentSpec.Step
Returns whether the nested steps in this, if any, should be performed in declaration order.- Overrides:
isOrdered
in classDeploymentSpec.Step
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classDeploymentSpec.Steps
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classDeploymentSpec.Steps
-
toString
public String toString()
- Overrides:
toString
in classDeploymentSpec.Steps
-
-