public class RxJavaSchedulersHook extends Object
Scheduler functionality 1. You may redefine entire schedulers, if you so choose. To do so, override the 3 methods that return Scheduler (io(), computation(), newThread()). 2. You may wrap/decorate an
Action0, before it is handed off to a Scheduler. The system- supplied Schedulers (Schedulers.ioScheduler, Schedulers.computationScheduler, Scheduler.newThreadScheduler) all use this hook, so it's a convenient way to modify Scheduler functionality without redefining Schedulers wholesale. Also, when redefining Schedulers, you are free to use/not use the onSchedule decoration hook.
See RxJavaPlugins or the RxJava GitHub Wiki for information on configuring plugins: https://github.com/ReactiveX/RxJava/wiki/Plugins.
| Modifier | Constructor and Description |
|---|---|
protected |
RxJavaSchedulersHook()
|
| Modifier and Type | Method and Description |
|---|---|
Scheduler |
getComputationScheduler()
Scheduler to return from
Schedulers or null if default should be used.
|
static RxJavaSchedulersHook |
getDefaultInstance()
|
Scheduler |
getIOScheduler()
Scheduler to return from
Schedulers or null if default should be used.
|
Scheduler |
getNewThreadScheduler()
Scheduler to return from
Schedulers or null if default should be used.
|
Action0 |
onSchedule(Action0
Invoked before the Action is handed over to the scheduler.
|
public SchedulergetComputationScheduler()
Schedulers.computation() or null if default should be used. This instance should be or behave like a stateless singleton;
public SchedulergetIOScheduler()
Schedulers.io() or null if default should be used. This instance should be or behave like a stateless singleton;
public SchedulergetNewThreadScheduler()
Schedulers.newThread() or null if default should be used. This instance should be or behave like a stateless singleton;
public Action0onSchedule(Action0 action)
action - action to schedule
public static RxJavaSchedulersHookgetDefaultInstance()