Interface JobChainStepComp
-
- All Known Subinterfaces:
JobChainStep
public interface JobChainStepComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<JobChainCall>
getJobChainCalls()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainCalls()
instead.Iterator<JobChainStepStatusHandler>
getJobChainStepStatusHandlers()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainStepStatusHandlers()
instead.
-
-
-
Method Detail
-
getJobChainCalls
@Deprecated Iterator<JobChainCall> getJobChainCalls()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainCalls()
instead.Get anIterator
over a collection ofJobChainCalls
, the collection will be ordered by SequenceNumber. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The calls performed in parallel in a job chain step- Returns:
- An
Iterator
over a collection ofJobChainCall
objects , the collection will be ordered by SequenceNumber.
-
getJobChainStepStatusHandlers
@Deprecated Iterator<JobChainStepStatusHandler> getJobChainStepStatusHandlers()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useJobChainStep.getJobChainStepStatusHandlers()
instead.Get anIterator
over a collection ofJobChainStepStatusHandlers
, the collection will be ordered by SequenceNumber. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Check that defines behavior after the step is finished- Returns:
- An
Iterator
over a collection ofJobChainStepStatusHandler
objects , the collection will be ordered by SequenceNumber.
-
-