@Retention(value=RUNTIME) @Documented @Target(value={CONSTRUCTOR,METHOD,TYPE}) public @interface SchedulerSupport
Constants are provided for instances from Schedulers
as well as values for
not using a scheduler and a manually-specified scheduler.
Libraries providing their own values should namespace them with their base package name followed
by a colon (:
) and then a human-readable name (e.g., com.example:ui-thread
).
Modifier and Type | Fields and Description |
---|---|
static String |
COMPUTATION
The operator/class runs on RxJava's computation
scheduler or takes timing information from it.
|
static String |
CUSTOM
A special value indicating the operator/class requires a scheduler to be manually specified.
|
static String |
IO
The operator/class runs on RxJava's I/O scheduler or takes
timing information from it.
|
static String |
NEW_THREAD
The operator/class runs on RxJava's new thread scheduler
or takes timing information from it.
|
static String |
NONE
A special value indicating the operator/class doesn't use schedulers.
|
static String |
SINGLE
The operator/class runs on RxJava's single scheduler
or takes timing information from it.
|
static String |
TRAMPOLINE
The operator/class runs on RxJava's trampoline scheduler
or takes timing information from it.
|
public static final String NONE
public static final String CUSTOM
public static final String COMPUTATION
public static final String IO
public static final String NEW_THREAD
public static final String TRAMPOLINE
public static final String SINGLE
History: 2.0.8 - experimental
public abstract String value