Interface BlockExecutionStateEvent
public interface BlockExecutionStateEvent
-
Method Summary
Modifier and TypeMethodDescriptioncom.xebialabs.deployit.engine.api.execution.BlockState
block()
Return the detailed block information object.com.xebialabs.deployit.engine.api.execution.BlockExecutionState
Returns the current state of the block.com.xebialabs.deployit.engine.api.execution.BlockExecutionState
Returns the previous state of the block.com.xebialabs.deployit.engine.api.execution.TaskWithBlock
task()
Return the detailed task information object.
-
Method Details
-
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.
-