public enum SchedulerKind extends java.lang.Enum<SchedulerKind>
| Enum Constant and Description |
|---|
COMPUTATION
The operator/class runs on the computation scheduler or takes timing information from it.
|
CUSTOM
The operator/class requires a scheduler to be manually specified.
|
IO
The operator/class runs on the io scheduler or takes timing information from it.
|
NEW_THREAD
The operator/class runs on the new thread scheduler or takes timing information from it.
|
NONE
The operator/class doesn't use schedulers.
|
SINGLE
The operator/class runs on the single scheduler or takes timing information from it.
|
TRAMPOLINE
The operator/class runs on the trampoline scheduler or takes timing information from it.
|
| Modifier and Type | Method and Description |
|---|---|
static SchedulerKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SchedulerKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchedulerKind NONE
public static final SchedulerKind COMPUTATION
public static final SchedulerKind IO
public static final SchedulerKind NEW_THREAD
public static final SchedulerKind TRAMPOLINE
public static final SchedulerKind SINGLE
public static final SchedulerKind CUSTOM
public static SchedulerKind[] values()
for (SchedulerKind c : SchedulerKind.values()) System.out.println(c);
public static SchedulerKind valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null