Uses of Package
rx.plugins
-
Packages that use rx.plugins Package Description rx.plugins Callback types and a central plugin handler class to hook into the lifecycle of the base reactive types and schedulers. -
Classes in rx.plugins used by rx.plugins Class Description RxJavaCompletableExecutionHook Abstract ExecutionHook with invocations at different lifecycle points ofCompletable
execution with a default no-op implementation.RxJavaErrorHandler Abstract class for defining error handling logic in addition to the normalObserver.onError(Throwable)
behavior.RxJavaObservableExecutionHook Abstract ExecutionHook with invocations at different lifecycle points ofObservable
execution with a default no-op implementation.RxJavaObservableExecutionHookDefault Default no-op implementation ofRxJavaObservableExecutionHook
RxJavaPlugins Registry for plugin implementations that allows global override and handles the retrieval of correct implementation based on order of precedence: plugin registered globally viaregister
methods in this class plugin registered and retrieved usingSystem.getProperty(String)
(see get methods for property names) default implementationRxJavaSchedulersHook This plugin class provides 2 ways to customizeScheduler
functionality 1.RxJavaSingleExecutionHook Abstract ExecutionHook with invocations at different lifecycle points ofSingle
execution with a default no-op implementation.RxJavaSingleExecutionHookDefault Default no-op implementation ofRxJavaSingleExecutionHook