Package org.refcodes.controlflow
Enum ExecutionStrategy
- java.lang.Object
-
- java.lang.Enum<ExecutionStrategy>
-
- org.refcodes.controlflow.ExecutionStrategy
-
public enum ExecutionStrategy extends java.lang.Enum<ExecutionStrategy>
The Enum ExecutionStrategy.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JOIN
Similar toPARALLEL
: TheJOIN
ExecutionStrategy
causes state change requests to be applied on the contained components in parallel, each state change request is applied in its own thread.PARALLEL
ThePARALLEL
ExecutionStrategy
causes state change requests to be applied on the contained components in parallel, each state change request is applied in its own thread.SEQUENTIAL
TheSEQUENTIAL
ExecutionStrategy
causes state change requests to be applied on the contained components in sequential order one after the other.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExecutionStrategy
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ExecutionStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEQUENTIAL
public static final ExecutionStrategy SEQUENTIAL
TheSEQUENTIAL
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
ThePARALLEL
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 toPARALLEL
: TheJOIN
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 Detail
-
values
public static ExecutionStrategy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExecutionStrategy c : ExecutionStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecutionStrategy valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-