int num = entry.getKey();
StepExecutionResult executionResult = entry.getValue();
if (NodeDispatchStepExecutor.isWrappedDispatcherResult(executionResult)) {
DispatcherResult dispatcherResult
= NodeDispatchStepExecutor.extractDispatcherResult(executionResult);
NodeStepResult stepResult = dispatcherResult.getResults().get(node.getNodename());
if (null != stepResult) {
results.put(num, stepResult);
}
} else if (NodeDispatchStepExecutor.isWrappedDispatcherException(executionResult)) {
DispatcherException exception