Class ConditionalStandalone

  • All Implemented Interfaces:
    AdditionalInformationHandler, CleanUpHandler, Destroyable, GlobalInfoSupporter, LoggingLevelHandler, LoggingSupporter, OptionHandler, QuickInfoSupporter, ShallowCopySupporter<Actor>, SizeOfHandler, Stoppable, StoppableWithFeedback, VariablesInspectionHandler, VariableChangeListener, TestConditionSupporter, Actor, ActorHandler, ErrorHandler, Flushable, Serializable, Comparable

    public class ConditionalStandalone
    extends AbstractConditionalActor
    Standalone that needs to fullfil a condition before being executed.

    -logging-level <OFF|SEVERE|WARNING|INFO|CONFIG|FINE|FINER|FINEST> (property: loggingLevel)
        The logging level for outputting errors and debugging output.
        default: WARNING
     
    -name <java.lang.String> (property: name)
        The name of the actor.
        default: ConditionalStandalone
     
    -annotation <adams.core.base.BaseText> (property: annotations)
        The annotations to attach to this actor.
        default: 
     
    -skip <boolean> (property: skip)
        If set to true, transformation is skipped and the input token is just forwarded 
        as it is.
        default: false
     
    -stop-flow-on-error <boolean> (property: stopFlowOnError)
        If set to true, the flow gets stopped in case this actor encounters an error;
         useful for critical actors.
        default: false
     
    -condition <adams.flow.condition.test.TestCondition> (property: condition)
        The condition that has to be met before the actor can be executed.
        default: adams.flow.condition.test.True
     
    -execution-time <boolean> (property: checkAtExecutionTime)
        If set to true, then the condition is checked at execution time (whenever 
        the actor gets executed) and not during setup.
        default: false
     
    -execute-on-fail <boolean> (property: executeOnFail)
        If set to true, then the actor is only executed if the condition fails.
        default: false
     
    -actor <adams.flow.core.AbstractActor> (property: actor)
        The base standalone to use.
        default: adams.flow.standalone.CallableActors
     
    Author:
    fracpete (fracpete at waikato dot ac dot nz)
    See Also:
    Serialized Form
    • Constructor Detail

      • ConditionalStandalone

        public ConditionalStandalone()