com.dtolabs.rundeck.core.execution
Interface FailedNodesListener

All Known Implementing Classes:
NodeRecorder

public interface FailedNodesListener

FailedNodesListener is ...


Method Summary
 void matchedNodes(java.util.Collection<java.lang.String> names)
          Called with full list of matched nodes prior to execution.
 void nodesFailed(java.util.Map<java.lang.String,NodeStepResult> failures)
          Called with a map of node names to failures.
 void nodesSucceeded()
          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:
names - node names

nodesSucceeded

void nodesSucceeded()
Called if no nodes failed during execution.


matchedNodes

void matchedNodes(java.util.Collection<java.lang.String> names)
Called with full list of matched nodes prior to execution.