All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rx.plugins.RxJavaHooks Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2016 Netflix, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package rx.plugins;

import java.lang.Thread.UncaughtExceptionHandler;
import java.util.concurrent.ScheduledExecutorService;

import rx.*;
import rx.functions.*;
import rx.internal.operators.*;

/**
 * Utility class that holds hooks for various Observable, Single and Completable lifecycle-related
 * points as well as Scheduler hooks.
 * 

* The class features a lockdown state, see {@link #lockdown()} and {@link #isLockdown()}, to * prevent further changes to the hooks. * @since 1.3 */ public final class RxJavaHooks { /** * Prevents changing the hook callbacks when set to true. */ /* test */ static volatile boolean lockdown; static volatile Action1 onError; @SuppressWarnings("rawtypes") static volatile Func1 onObservableCreate; @SuppressWarnings("rawtypes") static volatile Func1 onSingleCreate; static volatile Func1 onCompletableCreate; @SuppressWarnings("rawtypes") static volatile Func2 onObservableStart; @SuppressWarnings("rawtypes") static volatile Func2 onSingleStart; static volatile Func2 onCompletableStart; static volatile Func1 onComputationScheduler; static volatile Func1 onIOScheduler; static volatile Func1 onNewThreadScheduler; static volatile Func1 onScheduleAction; static volatile Func1 onObservableReturn; static volatile Func1 onSingleReturn; static volatile Func0 onGenericScheduledExecutorService; static volatile Func1 onObservableSubscribeError; static volatile Func1 onSingleSubscribeError; static volatile Func1 onCompletableSubscribeError; @SuppressWarnings("rawtypes") static volatile Func1 onObservableLift; @SuppressWarnings("rawtypes") static volatile Func1 onSingleLift; static volatile Func1 onCompletableLift; /** Initialize with the default delegation to the original RxJavaPlugins. */ static { init(); } /** Utility class. */ private RxJavaHooks() { throw new IllegalStateException("No instances!"); } /** * Initialize the hooks via delegating to RxJavaPlugins. */ @SuppressWarnings({ "rawtypes", "unchecked", "deprecation"}) static void init() { onError = new Action1() { @Override public void call(Throwable e) { RxJavaPlugins.getInstance().getErrorHandler().handleError(e); } }; onObservableStart = new Func2() { @Override public Observable.OnSubscribe call(Observable t1, Observable.OnSubscribe t2) { return RxJavaPlugins.getInstance().getObservableExecutionHook().onSubscribeStart(t1, t2); } }; onObservableReturn = new Func1() { @Override public Subscription call(Subscription f) { return RxJavaPlugins.getInstance().getObservableExecutionHook().onSubscribeReturn(f); } }; onSingleStart = new Func2() { @Override public Single.OnSubscribe call(Single t1, Single.OnSubscribe t2) { RxJavaSingleExecutionHook hook = RxJavaPlugins.getInstance().getSingleExecutionHook(); if (hook == RxJavaSingleExecutionHookDefault.getInstance()) { return t2; } return new SingleFromObservable(hook.onSubscribeStart(t1, new SingleToObservable(t2))); } }; onSingleReturn = new Func1() { @Override public Subscription call(Subscription f) { return RxJavaPlugins.getInstance().getSingleExecutionHook().onSubscribeReturn(f); } }; onCompletableStart = new Func2() { @Override public Completable.OnSubscribe call(Completable t1, Completable.OnSubscribe t2) { return RxJavaPlugins.getInstance().getCompletableExecutionHook().onSubscribeStart(t1, t2); } }; onScheduleAction = new Func1() { @Override public Action0 call(Action0 a) { return RxJavaPlugins.getInstance().getSchedulersHook().onSchedule(a); } }; onObservableSubscribeError = new Func1() { @Override public Throwable call(Throwable t) { return RxJavaPlugins.getInstance().getObservableExecutionHook().onSubscribeError(t); } }; onObservableLift = new Func1() { @Override public Observable.Operator call(Observable.Operator t) { return RxJavaPlugins.getInstance().getObservableExecutionHook().onLift(t); } }; onSingleSubscribeError = new Func1() { @Override public Throwable call(Throwable t) { return RxJavaPlugins.getInstance().getSingleExecutionHook().onSubscribeError(t); } }; onSingleLift = new Func1() { @Override public Observable.Operator call(Observable.Operator t) { return RxJavaPlugins.getInstance().getSingleExecutionHook().onLift(t); } }; onCompletableSubscribeError = new Func1() { @Override public Throwable call(Throwable t) { return RxJavaPlugins.getInstance().getCompletableExecutionHook().onSubscribeError(t); } }; onCompletableLift = new Func1() { @Override public Completable.Operator call(Completable.Operator t) { return RxJavaPlugins.getInstance().getCompletableExecutionHook().onLift(t); } }; initCreate(); } @SuppressWarnings({ "rawtypes", "unchecked", "deprecation" }) static void initCreate() { onObservableCreate = new Func1() { @Override public Observable.OnSubscribe call(Observable.OnSubscribe f) { return RxJavaPlugins.getInstance().getObservableExecutionHook().onCreate(f); } }; onSingleCreate = new Func1() { @Override public rx.Single.OnSubscribe call(rx.Single.OnSubscribe f) { return RxJavaPlugins.getInstance().getSingleExecutionHook().onCreate(f); } }; onCompletableCreate = new Func1() { @Override public Completable.OnSubscribe call(Completable.OnSubscribe f) { return RxJavaPlugins.getInstance().getCompletableExecutionHook().onCreate(f); } }; } /** * Reset all hook callbacks to those of the current RxJavaPlugins handlers. * * @see #clear() */ public static void reset() { if (lockdown) { return; } init(); onComputationScheduler = null; onIOScheduler = null; onNewThreadScheduler = null; onGenericScheduledExecutorService = null; } /** * Clears all hooks to be no-op (and pass-through) * and onError hook to signal errors to the caller thread's * UncaughtExceptionHandler. * * @see #reset() */ public static void clear() { if (lockdown) { return; } onError = null; onObservableCreate = null; onObservableStart = null; onObservableReturn = null; onObservableSubscribeError = null; onObservableLift = null; onSingleCreate = null; onSingleStart = null; onSingleReturn = null; onSingleSubscribeError = null; onSingleLift = null; onCompletableCreate = null; onCompletableStart = null; onCompletableSubscribeError = null; onCompletableLift = null; onComputationScheduler = null; onIOScheduler = null; onNewThreadScheduler = null; onScheduleAction = null; onGenericScheduledExecutorService = null; } /** * Prevents changing the hooks. */ public static void lockdown() { lockdown = true; } /** * Returns true if the hooks can no longer be changed. * @return true if the hooks can no longer be changed */ public static boolean isLockdown() { return lockdown; } /** * Consume undeliverable Throwables (acts as a global catch). * @param ex the exception to handle */ public static void onError(Throwable ex) { Action1 f = onError; if (f != null) { try { f.call(ex); return; } catch (Throwable pluginException) { /* * We don't want errors from the plugin to affect normal flow. * Since the plugin should never throw this is a safety net * and will complain loudly to System.err so it gets fixed. */ System.err.println("The onError handler threw an Exception. It shouldn't. => " + pluginException.getMessage()); // NOPMD pluginException.printStackTrace(); // NOPMD signalUncaught(pluginException); } } signalUncaught(ex); } static void signalUncaught(Throwable ex) { Thread current = Thread.currentThread(); UncaughtExceptionHandler handler = current.getUncaughtExceptionHandler(); handler.uncaughtException(current, ex); } /** * Hook to call when an Observable is created. * @param the value type * @param onSubscribe the original OnSubscribe logic * @return the original or replacement OnSubscribe instance */ @SuppressWarnings({ "rawtypes", "unchecked" }) public static Observable.OnSubscribe onCreate(Observable.OnSubscribe onSubscribe) { Func1 f = onObservableCreate; if (f != null) { return f.call(onSubscribe); } return onSubscribe; } /** * Hook to call when a Single is created. * @param the value type * @param onSubscribe the original OnSubscribe logic * @return the original or replacement OnSubscribe instance */ @SuppressWarnings({ "rawtypes", "unchecked" }) public static Single.OnSubscribe onCreate(Single.OnSubscribe onSubscribe) { Func1 f = onSingleCreate; if (f != null) { return f.call(onSubscribe); } return onSubscribe; } /** * Hook to call when a Completable is created. * @param onSubscribe the original OnSubscribe logic * @return the original or replacement OnSubscribe instance */ public static Completable.OnSubscribe onCreate(Completable.OnSubscribe onSubscribe) { Func1 f = onCompletableCreate; if (f != null) { return f.call(onSubscribe); } return onSubscribe; } /** * Hook to call when the Schedulers.computation() is called. * @param scheduler the default computation scheduler * @return the default of alternative scheduler */ public static Scheduler onComputationScheduler(Scheduler scheduler) { Func1 f = onComputationScheduler; if (f != null) { return f.call(scheduler); } return scheduler; } /** * Hook to call when the Schedulers.io() is called. * @param scheduler the default io scheduler * @return the default of alternative scheduler */ public static Scheduler onIOScheduler(Scheduler scheduler) { Func1 f = onIOScheduler; if (f != null) { return f.call(scheduler); } return scheduler; } /** * Hook to call when the Schedulers.newThread() is called. * @param scheduler the default new thread scheduler * @return the default of alternative scheduler */ public static Scheduler onNewThreadScheduler(Scheduler scheduler) { Func1 f = onNewThreadScheduler; if (f != null) { return f.call(scheduler); } return scheduler; } /** * Hook to call before the action is scheduled, allows * decorating the original action. * @param action the original action * @return the original or alternative action */ public static Action0 onScheduledAction(Action0 action) { Func1 f = onScheduleAction; if (f != null) { return f.call(action); } return action; } /** * Hook to call before the child subscriber is subscribed to the OnSubscribe action. * @param the value type * @param instance the parent Observable instance * @param onSubscribe the original OnSubscribe action * @return the original or alternative action that will be subscribed to */ @SuppressWarnings({ "rawtypes", "unchecked" }) public static Observable.OnSubscribe onObservableStart(Observable instance, Observable.OnSubscribe onSubscribe) { Func2 f = onObservableStart; if (f != null) { return f.call(instance, onSubscribe); } return onSubscribe; } /** * Hook to call before the Observable.subscribe() method is about to return a Subscription. * @param subscription the original subscription * @return the original or alternative subscription that will be returned */ public static Subscription onObservableReturn(Subscription subscription) { Func1 f = onObservableReturn; if (f != null) { return f.call(subscription); } return subscription; } /** * Hook to call if the Observable.subscribe() crashes for some reason. * @param error the error * @return the original error or alternative Throwable to be thrown */ public static Throwable onObservableError(Throwable error) { Func1 f = onObservableSubscribeError; if (f != null) { return f.call(error); } return error; } /** * Hook to call before the child subscriber would subscribe to an Operator. * @param the input value type * @param the output value type * @param operator the original operator * @return the original or alternative operator that will be subscribed to */ @SuppressWarnings({ "rawtypes", "unchecked" }) public static Observable.Operator onObservableLift(Observable.Operator operator) { Func1 f = onObservableLift; if (f != null) { return f.call(operator); } return operator; } /** * Hook to call before the child subscriber is subscribed to the OnSubscribe action. * @param the value type * @param instance the parent Single instance * @param onSubscribe the original OnSubscribe action * @return the original or alternative action that will be subscribed to */ @SuppressWarnings({ "rawtypes", "unchecked" }) public static Single.OnSubscribe onSingleStart(Single instance, Single.OnSubscribe onSubscribe) { Func2 f = onSingleStart; if (f != null) { return f.call(instance, onSubscribe); } return onSubscribe; } /** * Hook to call before the Single.subscribe() method is about to return a Subscription. * @param subscription the original subscription * @return the original or alternative subscription that will be returned */ public static Subscription onSingleReturn(Subscription subscription) { Func1 f = onSingleReturn; if (f != null) { return f.call(subscription); } return subscription; } /** * Hook to call if the Single.subscribe() crashes for some reason. * @param error the error * @return the original error or alternative Throwable to be thrown */ public static Throwable onSingleError(Throwable error) { Func1 f = onSingleSubscribeError; if (f != null) { return f.call(error); } return error; } /** * Hook to call before the child subscriber would subscribe to an Operator. * @param the input value type * @param the output value type * @param operator the original operator * @return the original or alternative operator that will be subscribed to */ @SuppressWarnings({ "rawtypes", "unchecked" }) public static Observable.Operator onSingleLift(Observable.Operator operator) { Func1 f = onSingleLift; if (f != null) { return f.call(operator); } return operator; } /** * Hook to call before the child subscriber is subscribed to the OnSubscribe action. * @param the value type * @param instance the parent Completable instance * @param onSubscribe the original OnSubscribe action * @return the original or alternative action that will be subscribed to */ public static Completable.OnSubscribe onCompletableStart(Completable instance, Completable.OnSubscribe onSubscribe) { Func2 f = onCompletableStart; if (f != null) { return f.call(instance, onSubscribe); } return onSubscribe; } /** * Hook to call if the Completable.subscribe() crashes for some reason. * @param error the error * @return the original error or alternative Throwable to be thrown */ public static Throwable onCompletableError(Throwable error) { Func1 f = onCompletableSubscribeError; if (f != null) { return f.call(error); } return error; } /** * Hook to call before the child subscriber would subscribe to an Operator. * @param the input value type * @param the output value type * @param operator the original operator * @return the original or alternative operator that will be subscribed to */ public static Completable.Operator onCompletableLift(Completable.Operator operator) { Func1 f = onCompletableLift; if (f != null) { return f.call(operator); } return operator; } /** * Sets the global error consumer action unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter has the effect that * errors are routed to the current thread's {@link UncaughtExceptionHandler}. * @param onError the action that will receive undeliverable Throwables */ public static void setOnError(Action1 onError) { if (lockdown) { return; } RxJavaHooks.onError = onError; } /** * Sets the Completable's onCreate hook function unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onCompletableCreate the function that takes the original CompletableOnSubscribe * and should return a CompletableOnSubscribe. */ public static void setOnCompletableCreate( Func1 onCompletableCreate) { if (lockdown) { return; } RxJavaHooks.onCompletableCreate = onCompletableCreate; } /** * Sets the Observable onCreate hook function unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onObservableCreate the function that takes the original OnSubscribe * and should return a OnSubscribe. */ @SuppressWarnings("rawtypes") public static void setOnObservableCreate( Func1 onObservableCreate) { if (lockdown) { return; } RxJavaHooks.onObservableCreate = onObservableCreate; } /** * Sets the Single onCreate hook function unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onSingleCreate the function that takes the original OnSubscribe * and should return a OnSubscribe. */ @SuppressWarnings("rawtypes") public static void setOnSingleCreate(Func1 onSingleCreate) { if (lockdown) { return; } RxJavaHooks.onSingleCreate = onSingleCreate; } /** * Sets the hook function for returning a scheduler when the Schedulers.computation() is called * unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onComputationScheduler the function that receives the original computation scheduler * and should return a scheduler. */ public static void setOnComputationScheduler(Func1 onComputationScheduler) { if (lockdown) { return; } RxJavaHooks.onComputationScheduler = onComputationScheduler; } /** * Sets the hook function for returning a scheduler when the Schedulers.io() is called * unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onIOScheduler the function that receives the original io scheduler * and should return a scheduler. */ public static void setOnIOScheduler(Func1 onIOScheduler) { if (lockdown) { return; } RxJavaHooks.onIOScheduler = onIOScheduler; } /** * Sets the hook function for returning a scheduler when the Schedulers.newThread() is called * unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onNewThreadScheduler the function that receives the original new thread scheduler * and should return a scheduler. */ public static void setOnNewThreadScheduler(Func1 onNewThreadScheduler) { if (lockdown) { return; } RxJavaHooks.onNewThreadScheduler = onNewThreadScheduler; } /** * Sets the hook function that is called before an action is scheduled, allowing * decorating that function, unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onScheduleAction the function that receives the original action and should * return an Action0. */ public static void setOnScheduleAction(Func1 onScheduleAction) { if (lockdown) { return; } RxJavaHooks.onScheduleAction = onScheduleAction; } /** * Sets the hook function that is called when a subscriber subscribes to a Completable * unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same CompletableOnSubscribe object. * @param onCompletableStart the function that is called with the current Completable instance, * its CompletableOnSubscribe function and should return a CompletableOnSubscribe function * that gets actually subscribed to. */ public static void setOnCompletableStart( Func2 onCompletableStart) { if (lockdown) { return; } RxJavaHooks.onCompletableStart = onCompletableStart; } /** * Sets the hook function that is called when a subscriber subscribes to a Observable * unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same OnSubscribe object. * @param onObservableStart the function that is called with the current Observable instance, * its OnSubscribe function and should return a OnSubscribe function * that gets actually subscribed to. */ @SuppressWarnings("rawtypes") public static void setOnObservableStart( Func2 onObservableStart) { if (lockdown) { return; } RxJavaHooks.onObservableStart = onObservableStart; } /** * Sets the hook function that is called when a subscriber subscribes to a Single * unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same OnSubscribe object. * @param onSingleStart the function that is called with the current Single instance, * its OnSubscribe function and should return a OnSubscribe function * that gets actually subscribed to. */ @SuppressWarnings("rawtypes") public static void setOnSingleStart(Func2 onSingleStart) { if (lockdown) { return; } RxJavaHooks.onSingleStart = onSingleStart; } /** * Sets a hook function that is called when the Observable.subscribe() call * is about to return a Subscription unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onObservableReturn the function that is called with the Subscriber that has been * subscribed to the OnSubscribe function and returns a Subscription that will be returned by * subscribe(). */ public static void setOnObservableReturn(Func1 onObservableReturn) { if (lockdown) { return; } RxJavaHooks.onObservableReturn = onObservableReturn; } /** * Sets a hook function that is called when the Single.subscribe() call * is about to return a Subscription unless a lockdown is in effect. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onSingleReturn the function that is called with the SingleSubscriber that has been * subscribed to the OnSubscribe function and returns a Subscription that will be returned by * subscribe(). */ public static void setOnSingleReturn(Func1 onSingleReturn) { if (lockdown) { return; } RxJavaHooks.onSingleReturn = onSingleReturn; } /** * Sets a hook function that is called when the Single.subscribe() call * fails with an exception. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onSingleSubscribeError the function that is called with the crash exception and should return * an exception. */ public static void setOnSingleSubscribeError(Func1 onSingleSubscribeError) { if (lockdown) { return; } RxJavaHooks.onSingleSubscribeError = onSingleSubscribeError; } /** * Returns the current Single onSubscribeError hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnSingleSubscribeError() { return onSingleSubscribeError; } /** * Sets a hook function that is called when the Completable.subscribe() call * fails with an exception. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onCompletableSubscribeError the function that is called with the crash exception and should return * an exception. */ public static void setOnCompletableSubscribeError(Func1 onCompletableSubscribeError) { if (lockdown) { return; } RxJavaHooks.onCompletableSubscribeError = onCompletableSubscribeError; } /** * Returns the current Completable onSubscribeError hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnCompletableSubscribeError() { return onCompletableSubscribeError; } /** * Sets a hook function that is called when the Observable.subscribe() call * fails with an exception. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onObservableSubscribeError the function that is called with the crash exception and should return * an exception. */ public static void setOnObservableSubscribeError(Func1 onObservableSubscribeError) { if (lockdown) { return; } RxJavaHooks.onObservableSubscribeError = onObservableSubscribeError; } /** * Returns the current Observable onSubscribeError hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnObservableSubscribeError() { return onObservableSubscribeError; } /** * Sets a hook function that is called with an operator when an Observable operator built with * lift() gets subscribed to. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onObservableLift the function that is called with original Operator and should * return an Operator instance. */ @SuppressWarnings("rawtypes") public static void setOnObservableLift(Func1 onObservableLift) { if (lockdown) { return; } RxJavaHooks.onObservableLift = onObservableLift; } /** * Returns the current Observable onLift hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ @SuppressWarnings("rawtypes") public static Func1 getOnObservableLift() { return onObservableLift; } /** * Sets a hook function that is called with an operator when an Single operator built with * lift() gets subscribed to. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onSingleLift the function that is called with original Operator and should * return an Operator instance. */ @SuppressWarnings("rawtypes") public static void setOnSingleLift(Func1 onSingleLift) { if (lockdown) { return; } RxJavaHooks.onSingleLift = onSingleLift; } /** * Returns the current Single onLift hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ @SuppressWarnings("rawtypes") public static Func1 getOnSingleLift() { return onSingleLift; } /** * Sets a hook function that is called with an operator when a Completable operator built with * lift() gets subscribed to. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * the hook returns the same object. * @param onCompletableLift the function that is called with original Operator and should * return an Operator instance. */ public static void setOnCompletableLift(Func1 onCompletableLift) { if (lockdown) { return; } RxJavaHooks.onCompletableLift = onCompletableLift; } /** * Returns the current Completable onLift hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnCompletableLift() { return onCompletableLift; } /** * Returns the current computation scheduler hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnComputationScheduler() { return onComputationScheduler; } /** * Returns the current global error handler hook action or null if it is * set to the default one that signals errors to the current threads * UncaughtExceptionHandler. *

* This operation is thread-safe. * @return the current hook action */ public static Action1 getOnError() { return onError; } /** * Returns the current io scheduler hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnIOScheduler() { return onIOScheduler; } /** * Returns the current new thread scheduler hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnNewThreadScheduler() { return onNewThreadScheduler; } /** * Returns the current Observable onCreate hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ @SuppressWarnings("rawtypes") public static Func1 getOnObservableCreate() { return onObservableCreate; } /** * Returns the current schedule action hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnScheduleAction() { return onScheduleAction; } /** * Returns the current Single onCreate hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ @SuppressWarnings("rawtypes") public static Func1 getOnSingleCreate() { return onSingleCreate; } /** * Returns the current Completable onCreate hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnCompletableCreate() { return onCompletableCreate; } /** * Returns the current Completable onStart hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func2 getOnCompletableStart() { return onCompletableStart; } /** * Returns the current Observable onStart hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ @SuppressWarnings("rawtypes") public static Func2 getOnObservableStart() { return onObservableStart; } /** * Returns the current Single onStart hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ @SuppressWarnings("rawtypes") public static Func2 getOnSingleStart() { return onSingleStart; } /** * Returns the current Observable onReturn hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnObservableReturn() { return onObservableReturn; } /** * Returns the current Single onReturn hook function or null if it is * set to the default pass-through. *

* This operation is thread-safe. * @return the current hook function */ public static Func1 getOnSingleReturn() { return onSingleReturn; } /** * Resets the assembly tracking hooks to their default delegates to * RxJavaPlugins. */ public static void resetAssemblyTracking() { if (lockdown) { return; } initCreate(); } /** * Clears the assembly tracking hooks to their default pass-through behavior. */ public static void clearAssemblyTracking() { if (lockdown) { return; } onObservableCreate = null; onSingleCreate = null; onCompletableCreate = null; } /** * Sets up hooks that capture the current stacktrace when a source or an * operator is instantiated, keeping it in a field for debugging purposes * and alters exceptions passing along to hold onto this stacktrace. */ @SuppressWarnings({ "rawtypes", "unchecked" }) public static void enableAssemblyTracking() { if (lockdown) { return; } onObservableCreate = new Func1() { @Override public Observable.OnSubscribe call(Observable.OnSubscribe f) { return new OnSubscribeOnAssembly(f); } }; onSingleCreate = new Func1() { @Override public rx.Single.OnSubscribe call(rx.Single.OnSubscribe f) { return new OnSubscribeOnAssemblySingle(f); } }; onCompletableCreate = new Func1() { @Override public Completable.OnSubscribe call(Completable.OnSubscribe f) { return new OnSubscribeOnAssemblyCompletable(f); } }; } /** * Sets the hook function for returning a ScheduledExecutorService used * by the GenericScheduledExecutorService for background tasks. *

* This operation is thread-safe. *

* Calling with a {@code null} parameter restores the default behavior: * create the default with {@link java.util.concurrent.Executors#newScheduledThreadPool(int, java.util.concurrent.ThreadFactory)}. *

* For the changes to take effect, the Schedulers has to be restarted. * @param factory the supplier that is called when the GenericScheduledExecutorService * is (re)started */ public static void setOnGenericScheduledExecutorService(Func0 factory) { if (lockdown) { return; } onGenericScheduledExecutorService = factory; } /** * Returns the current factory for creating ScheduledExecutorServices in * GenericScheduledExecutorService utility. *

* This operation is thread-safe. * @return the current factory function */ public static Func0 getOnGenericScheduledExecutorService() { return onGenericScheduledExecutorService; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy