Serializable, Comparable<ExecutionMode>@API(status=EXPERIMENTAL,
since="5.3")
public enum ExecutionMode
extends Enum<ExecutionMode>
SAME_THREAD,
CONCURRENT| Enum Constant | Description |
|---|---|
CONCURRENT |
Allow concurrent execution with any other node.
|
SAME_THREAD |
Force execution in same thread as the parent node.
|
| Modifier and Type | Method | 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
CONCURRENTpublic static final ExecutionMode CONCURRENT
SAME_THREADpublic 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 © 2019. All rights reserved.