R
- The type of the output of the previous computationpublic interface OutputCoordinator<R>
Modifier and Type | Method and Description |
---|---|
java.util.HashMap<java.lang.String,java.lang.Object> |
buildNextWorkflowParameters(R previousResult,
java.util.HashMap<java.lang.String,java.lang.Object> previousParameters)
From a map of parameters and the output of the previous step in a pipeline,
this method builds a map of parameters for the next step of the computation.
|
java.util.HashMap<java.lang.String,java.lang.Object> buildNextWorkflowParameters(R previousResult, java.util.HashMap<java.lang.String,java.lang.Object> previousParameters)
previousResult
- The results of the previous computationpreviousParameters
- The parameters used for the previous computationWorkflowExecutionException
- If for some reason the output of
the previous computation is not compliant, an exception of this type will be returned.