operator - method
Creates a conditional transition with the given action.
This is used with the >> operator to chain nodes conditionally.
nodeA - 'success' >> nodeB;
Implementation
ConditionalTransition operator -(String action) {
return ConditionalTransition(this, action);
}