Interface BlockExecutionStateEvent
-
public interface BlockExecutionStateEvent
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.xebialabs.deployit.engine.api.execution.BlockState
block()
Return the detailed block information object.com.xebialabs.deployit.engine.api.execution.BlockExecutionState
currentState()
Returns the current state of the block.com.xebialabs.deployit.engine.api.execution.BlockExecutionState
previousState()
Returns the previous state of the block.com.xebialabs.deployit.engine.api.execution.TaskWithBlock
task()
Return the detailed task information object.
-
-
-
Method Detail
-
previousState
com.xebialabs.deployit.engine.api.execution.BlockExecutionState previousState()
Returns the previous state of the block.
-
currentState
com.xebialabs.deployit.engine.api.execution.BlockExecutionState currentState()
Returns the current state of the block.
-
block
com.xebialabs.deployit.engine.api.execution.BlockState block()
Return the detailed block information object.
-
task
com.xebialabs.deployit.engine.api.execution.TaskWithBlock task()
Return the detailed task information object.
-
-