Enum EWorkflowEventLoopTiming
- All Implemented Interfaces:
Serializable, Comparable<EWorkflowEventLoopTiming>
A single workflow event may trigger multiple tasks, which are executed in order. The workflow engine keeps a queue
with all tasks that still need to be executed. It is possible to add new tasks to the queue during an ongoing
execution. This enumeration defines the position where new tasks are added to the queue.
- Since:
- 8.0.0
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAdd the new task immediately after the current task, so that it is executed next.Add the new task to the end of the queue, so that it is executed after all other pending tasks. -
Method Summary
Modifier and TypeMethodDescriptionstatic EWorkflowEventLoopTimingReturns the enum constant of this type with the specified name.static EWorkflowEventLoopTiming[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
AFTER_CURRENT_TASK
Add the new task immediately after the current task, so that it is executed next. -
END_OF_QUEUE
Add the new task to the end of the queue, so that it is executed after all other pending tasks.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-