Enum Class ExecutionStrategy

java.lang.Object
java.lang.Enum<ExecutionStrategy>
org.refcodes.controlflow.ExecutionStrategy
All Implemented Interfaces:
Serializable, Comparable<ExecutionStrategy>, Constable

public enum ExecutionStrategy extends Enum<ExecutionStrategy>
The Enum ExecutionStrategy.
  • Enum Constant Details

    • SEQUENTIAL

      public static final ExecutionStrategy SEQUENTIAL
      The SEQUENTIAL ExecutionStrategy causes state change requests to be applied on the contained components in sequential order one after the other. In case an exception occurs, then the exception of the first erroneous component is forward (thrown). The invoking method waits till all components have been
    • PARALLEL

      public static final ExecutionStrategy PARALLEL
      The PARALLEL ExecutionStrategy causes state change requests to be applied on the contained components in parallel, each state change request is applied in its own thread. In case an exception occurs, then this exception is ignored. The invoking method exits immediately after all threads for all applicable components have been started.
    • JOIN

      public static final ExecutionStrategy JOIN
      Similar to PARALLEL: The JOIN ExecutionStrategy causes state change requests to be applied on the contained components in parallel, each state change request is applied in its own thread. In case an exception occurs, then the exception of the first erroneous component is forward (thrown). The invoking method waits till all threads have executed (died).
  • Method Details

    • values

      public static ExecutionStrategy[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ExecutionStrategy valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null