Interface FailedNodesListener
-
- All Known Implementing Classes:
NodeRecorder
public interface FailedNodesListenerFailedNodesListener is ...
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidmatchedNodes(java.util.Collection<java.lang.String> names)voidnodesFailed(java.util.Map<java.lang.String,NodeStepResult> failures)Called with a map of node names to failures.voidnodesSucceeded()Called if no nodes failed during execution.
-
-
-
Method Detail
-
nodesFailed
void nodesFailed(java.util.Map<java.lang.String,NodeStepResult> failures)
Called with a map of node names to failures. The nodes will be the failed nodes.- Parameters:
failures- failures map
-
nodesSucceeded
void nodesSucceeded()
Called if no nodes failed during execution.
-
matchedNodes
void matchedNodes(java.util.Collection<java.lang.String> names)
- Parameters:
names- full list of matched nodes prior to execution.
-
-