@API(status=EXPERIMENTAL, since="5.3") public enum ExecutionMode extends Enum<ExecutionMode>
SAME_THREAD
,
CONCURRENT
Enum Constant and Description |
---|
CONCURRENT
Allow concurrent execution with any other node.
|
SAME_THREAD
Force execution in same thread as the parent node.
|
Modifier and Type | Method and Description |
---|---|
static ExecutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionMode SAME_THREAD
CONCURRENT
public static final ExecutionMode CONCURRENT
SAME_THREAD
public static ExecutionMode[] values()
for (ExecutionMode c : ExecutionMode.values()) System.out.println(c);
public static ExecutionMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.