Uses of Class
io.reactivex.rxjava3.annotations.Nullable
-
Packages that use Nullable Package Description io.reactivex.rxjava3.core Base reactive classes:Flowable,Observable,Single,MaybeandCompletable; base reactive consumers; other common base interfaces.io.reactivex.rxjava3.disposables Default implementations forDisposable-based resource management (Disposablecontainer types) and utility classes to constructDisposablesfrom callbacks and other types.io.reactivex.rxjava3.flowables Classes supporting the Flowable base reactive class:ConnectableFlowableandGroupedFlowable.io.reactivex.rxjava3.internal.disposables io.reactivex.rxjava3.internal.jdk8 io.reactivex.rxjava3.internal.observers io.reactivex.rxjava3.internal.operators.flowable io.reactivex.rxjava3.internal.operators.maybe io.reactivex.rxjava3.internal.operators.observable io.reactivex.rxjava3.internal.operators.single io.reactivex.rxjava3.internal.queue io.reactivex.rxjava3.internal.schedulers io.reactivex.rxjava3.internal.subscriptions io.reactivex.rxjava3.observables Classes supporting the Observable base reactive class:ConnectableObservableandGroupedObservable.io.reactivex.rxjava3.observers Default wrappers and implementations for observer-based consumer classes and interfaces, including disposable and resource-tracking variants and theTestObserverthat allows unit testingObservable-,Single-,Maybe- andCompletable-based flows.io.reactivex.rxjava3.operators Classes and interfaces for writing advanced operators within and outside RxJava.io.reactivex.rxjava3.plugins Contains the central plugin handlerRxJavaPluginsclass to hook into the lifecycle of the base reactive types and schedulers.io.reactivex.rxjava3.processors Classes representing so-called hot backpressure-aware sources, aka processors, that implement theFlowableProcessorclass, the Reactive StreamsProcessorinterface to allow forms of multicasting events to one or more subscribers as well as consuming another Reactive StreamsPublisher.io.reactivex.rxjava3.subjects Classes representing so-called hot sources, aka subjects, that implement a base reactive class and the respective consumer type at once to allow forms of multicasting events to multiple consumers as well as consuming another base reactive type of their kind. -
-
Uses of Nullable in io.reactivex.rxjava3.core
Fields in io.reactivex.rxjava3.core with annotations of type Nullable Modifier and Type Field Description (package private) @Nullable java.lang.ThreadScheduler.DisposeTask. runnerMethods in io.reactivex.rxjava3.core with annotations of type Nullable Modifier and Type Method Description TMaybe. blockingGet()Waits in a blocking fashion until the currentMaybesignals a success value (which is returned),nullif completed or an exception (which is propagated).@Nullable java.lang.ThrowableNotification. getError()Returns the containerThrowableerror if this notification is anonErrorsignal, null otherwise.TNotification. getValue()Returns the contained value if this notification is anonNextsignal, null otherwise.Method parameters in io.reactivex.rxjava3.core with annotations of type Nullable Modifier and Type Method Description @NonNull java.util.concurrent.CompletionStage<T>Flowable. firstStage(@NonNull T defaultItem)Signals the first upstream item (or the default item if the upstream is empty) via aCompletionStage.@NonNull java.util.concurrent.CompletionStage<T>Observable. firstStage(@NonNull T defaultItem)Signals the first upstream item (or the default item if the upstream is empty) via aCompletionStage.@NonNull java.util.concurrent.CompletionStage<T>Flowable. lastStage(@NonNull T defaultItem)Signals the last upstream item (or the default item if the upstream is empty) via aCompletionStage.@NonNull java.util.concurrent.CompletionStage<T>Observable. lastStage(@NonNull T defaultItem)Signals the last upstream item (or the default item if the upstream is empty) via aCompletionStage.@NonNull Flowable<T>Flowable. onBackpressureBuffer(long capacity, @Nullable Action onOverflow, @NonNull BackpressureOverflowStrategy overflowStrategy)Buffers an optionally unlimited number of items from the currentFlowableand allows it to emit as fast it can while allowing the downstream to consume the items at its own place.@NonNull Flowable<T>Flowable. onBackpressureBuffer(long capacity, @Nullable Action onOverflow, @NonNull BackpressureOverflowStrategy overflowStrategy, @NonNull Consumer<? super @NonNull T> onDropped)Buffers an optionally unlimited number of items from the currentFlowableand allows it to emit as fast it can while allowing the downstream to consume the items at its own place.voidCompletableEmitter. setCancellable(@Nullable Cancellable c)Sets a Cancellable on this emitter; any previousDisposableorCancellablewill be disposed/cancelled.voidFlowableEmitter. setCancellable(@Nullable Cancellable c)Sets aCancellableon this emitter; any previousDisposableorCancellablewill be disposed/cancelled.voidMaybeEmitter. setCancellable(@Nullable Cancellable c)Sets aCancellableon this emitter; any previousDisposableorCancellablewill be disposed/cancelled.voidObservableEmitter. setCancellable(@Nullable Cancellable c)Sets aCancellableon this emitter; any previousDisposableorCancellablewill be disposed/cancelled.voidSingleEmitter. setCancellable(@Nullable Cancellable c)Sets a Cancellable on this emitter; any previousDisposableorCancellablewill be disposed/cancelled.voidCompletableEmitter. setDisposable(@Nullable Disposable d)Sets a Disposable on this emitter; any previousDisposableorCancellablewill be disposed/cancelled.voidFlowableEmitter. setDisposable(@Nullable Disposable d)Sets a Disposable on this emitter; any previousDisposableorCancellablewill be disposed/cancelled.voidMaybeEmitter. setDisposable(@Nullable Disposable d)Sets aDisposableon this emitter; any previousDisposableorCancellablewill be disposed/cancelled.voidObservableEmitter. setDisposable(@Nullable Disposable d)Sets aDisposableon this emitter; any previousDisposableorCancellablewill be disposed/cancelled.voidSingleEmitter. setDisposable(@Nullable Disposable d)Sets aDisposableon this emitter; any previousDisposableorCancellablewill be disposed/cancelled.@NonNull java.util.concurrent.CompletionStage<T>Flowable. singleStage(@NonNull T defaultItem)Signals the only expected upstream item (or the default item if the upstream is empty) or signalsIllegalArgumentExceptionif the upstream has more than one item via aCompletionStage.@NonNull java.util.concurrent.CompletionStage<T>Observable. singleStage(@NonNull T defaultItem)Signals the only expected upstream item (or the default item if the upstream is empty) or signalsIllegalArgumentExceptionif the upstream has more than one item via aCompletionStage.private @NonNull Observable<T>Observable. timeout0(long timeout, @NonNull java.util.concurrent.TimeUnit unit, @Nullable ObservableSource<? extends @NonNull T> fallback, @NonNull Scheduler scheduler)private <U,V>
@NonNull Observable<T>Observable. timeout0(@NonNull ObservableSource<U> firstTimeoutIndicator, @NonNull Function<? super @NonNull T,? extends ObservableSource<V>> itemTimeoutIndicator, @Nullable ObservableSource<? extends @NonNull T> fallback)@NonNull java.util.concurrent.CompletionStage<T>Maybe. toCompletionStage(@NonNull T defaultItem)Signals the upstream success item (or the default item if the upstream is empty) via aCompletionStage.Constructor parameters in io.reactivex.rxjava3.core with annotations of type Nullable Constructor Description Notification(@Nullable java.lang.Object value)Not meant to be implemented externally. -
Uses of Nullable in io.reactivex.rxjava3.disposables
Methods in io.reactivex.rxjava3.disposables with annotations of type Nullable Modifier and Type Method Description @Nullable DisposableSerialDisposable. get()Returns the currently contained Disposable or null if this container is empty.Method parameters in io.reactivex.rxjava3.disposables with annotations of type Nullable Modifier and Type Method Description (package private) voidCompositeDisposable. dispose(@Nullable OpenHashSet<Disposable> set)Dispose the contents of theOpenHashSetby suppressing non-fatalThrowables till the end.booleanSerialDisposable. replace(@Nullable Disposable next)Atomically: set the next disposable on this container but don't dispose the previous one (if any) or dispose next if the container has been disposed.booleanSerialDisposable. set(@Nullable Disposable next)Atomically: set the next disposable on this container and dispose the previous one (if any) or dispose next if the container has been disposed.Constructor parameters in io.reactivex.rxjava3.disposables with annotations of type Nullable Constructor Description SerialDisposable(@Nullable Disposable initialDisposable)Constructs a SerialDisposable with the given initial Disposable instance. -
Uses of Nullable in io.reactivex.rxjava3.flowables
Methods in io.reactivex.rxjava3.flowables with annotations of type Nullable Modifier and Type Method Description KGroupedFlowable. getKey()Returns the key that identifies the group of items emitted by thisGroupedFlowable.Constructor parameters in io.reactivex.rxjava3.flowables with annotations of type Nullable Constructor Description GroupedFlowable(K key)Constructs a GroupedFlowable with the given key. -
Uses of Nullable in io.reactivex.rxjava3.internal.disposables
Methods in io.reactivex.rxjava3.internal.disposables with annotations of type Nullable Modifier and Type Method Description @Nullable java.lang.ObjectEmptyDisposable. poll() -
Uses of Nullable in io.reactivex.rxjava3.internal.jdk8
Methods in io.reactivex.rxjava3.internal.jdk8 with annotations of type Nullable Modifier and Type Method Description TFlowableFromStream.AbstractStreamSubscription. poll()RMaybeFlattenStreamAsFlowable.FlattenStreamMultiObserver. poll()RMaybeFlattenStreamAsObservable.FlattenStreamMultiObserver. poll()TObservableFromStream.StreamDisposable. poll() -
Uses of Nullable in io.reactivex.rxjava3.internal.observers
Methods in io.reactivex.rxjava3.internal.observers with annotations of type Nullable Modifier and Type Method Description TDeferredScalarDisposable. poll() -
Uses of Nullable in io.reactivex.rxjava3.internal.operators.flowable
Fields in io.reactivex.rxjava3.internal.operators.flowable with annotations of type Nullable Modifier and Type Field Description (package private) @Nullable org.reactivestreams.Publisher<? extends T>[]FlowableCombineLatest. array(package private) @Nullable java.lang.Iterable<? extends org.reactivestreams.Publisher<? extends T>>FlowableCombineLatest. iterable(package private) @Nullable org.reactivestreams.Publisher<?>[]FlowableWithLatestFromMany. otherArray(package private) @Nullable java.lang.Iterable<? extends org.reactivestreams.Publisher<?>>FlowableWithLatestFromMany. otherIterableMethods in io.reactivex.rxjava3.internal.operators.flowable with annotations of type Nullable Modifier and Type Method Description RFlowableCombineLatest.CombineLatestCoordinator. poll()TFlowableDistinct.DistinctSubscriber. poll()TFlowableDistinctUntilChanged.DistinctUntilChangedConditionalSubscriber. poll()TFlowableDistinctUntilChanged.DistinctUntilChangedSubscriber. poll()TFlowableDoAfterNext.DoAfterConditionalSubscriber. poll()TFlowableDoAfterNext.DoAfterSubscriber. poll()TFlowableDoFinally.DoFinallyConditionalSubscriber. poll()TFlowableDoFinally.DoFinallySubscriber. poll()TFlowableDoOnEach.DoOnEachConditionalSubscriber. poll()TFlowableDoOnEach.DoOnEachSubscriber. poll()TFlowableFilter.FilterConditionalSubscriber. poll()TFlowableFilter.FilterSubscriber. poll()TFlowableFlatMapCompletable.FlatMapCompletableMainSubscriber. poll()RFlowableFlattenIterable.FlattenIterableSubscriber. poll()TFlowableFromArray.BaseArraySubscription. poll()TFlowableFromIterable.BaseRangeSubscription. poll()TFlowableGroupBy.State. poll()TFlowableIgnoreElements.IgnoreElementsSubscriber. poll()UFlowableMap.MapConditionalSubscriber. poll()UFlowableMap.MapSubscriber. poll()TFlowableObserveOn.ObserveOnConditionalSubscriber. poll()TFlowableObserveOn.ObserveOnSubscriber. poll()TFlowableOnBackpressureBuffer.BackpressureBufferSubscriber. poll()@Nullable java.lang.IntegerFlowableRange.BaseRangeSubscription. poll()@Nullable java.lang.LongFlowableRangeLong.BaseRangeSubscription. poll() -
Uses of Nullable in io.reactivex.rxjava3.internal.operators.maybe
Methods in io.reactivex.rxjava3.internal.operators.maybe with annotations of type Nullable Modifier and Type Method Description RMaybeFlatMapIterableFlowable.FlatMapIterableObserver. poll()RMaybeFlatMapIterableObservable.FlatMapIterableObserver. poll()TMaybeMergeArray.ClqSimpleQueue. poll()TMaybeMergeArray.MergeMaybeObserver. poll()TMaybeMergeArray.MpscFillOnceSimpleQueue. poll()TMaybeMergeArray.SimpleQueueWithConsumerIndex. poll() -
Uses of Nullable in io.reactivex.rxjava3.internal.operators.observable
Fields in io.reactivex.rxjava3.internal.operators.observable with annotations of type Nullable Modifier and Type Field Description (package private) @Nullable ObservableSource<?>[]ObservableWithLatestFromMany. otherArray(package private) @Nullable java.lang.Iterable<? extends ObservableSource<?>>ObservableWithLatestFromMany. otherIterableMethods in io.reactivex.rxjava3.internal.operators.observable with annotations of type Nullable Modifier and Type Method Description TObservableDistinct.DistinctObserver. poll()TObservableDistinctUntilChanged.DistinctUntilChangedObserver. poll()TObservableDoAfterNext.DoAfterObserver. poll()TObservableDoFinally.DoFinallyObserver. poll()TObservableFilter.FilterObserver. poll()TObservableFlatMapCompletable.FlatMapCompletableMainObserver. poll()TObservableFromArray.FromArrayDisposable. poll()TObservableFromIterable.FromIterableDisposable. poll()UObservableMap.MapObserver. poll()TObservableObserveOn.ObserveOnObserver. poll()@Nullable java.lang.IntegerObservableRange.RangeDisposable. poll()@Nullable java.lang.LongObservableRangeLong.RangeDisposable. poll()TObservableScalarXMap.ScalarDisposable. poll() -
Uses of Nullable in io.reactivex.rxjava3.internal.operators.single
Methods in io.reactivex.rxjava3.internal.operators.single with annotations of type Nullable Modifier and Type Method Description RSingleFlatMapIterableFlowable.FlatMapIterableObserver. poll()RSingleFlatMapIterableObservable.FlatMapIterableObserver. poll() -
Uses of Nullable in io.reactivex.rxjava3.internal.queue
Methods in io.reactivex.rxjava3.internal.queue with annotations of type Nullable Modifier and Type Method Description TMpscLinkedQueue. poll()Tries to dequeue a value (non-null) or returns null if the queue is empty. -
Uses of Nullable in io.reactivex.rxjava3.internal.schedulers
Method parameters in io.reactivex.rxjava3.internal.schedulers with annotations of type Nullable Modifier and Type Method Description @NonNull ScheduledRunnableNewThreadWorker. scheduleActual(java.lang.Runnable run, long delayTime, @NonNull java.util.concurrent.TimeUnit unit, @Nullable DisposableContainer parent)Wraps and returns the given runnable into a ScheduledRunnable and schedules it on the underlying ScheduledExecutorService. -
Uses of Nullable in io.reactivex.rxjava3.internal.subscriptions
Methods in io.reactivex.rxjava3.internal.subscriptions with annotations of type Nullable Modifier and Type Method Description TDeferredScalarSubscription. poll()@Nullable java.lang.ObjectEmptySubscription. poll()TScalarSubscription. poll() -
Uses of Nullable in io.reactivex.rxjava3.observables
Methods in io.reactivex.rxjava3.observables with annotations of type Nullable Modifier and Type Method Description KGroupedObservable. getKey()Returns the key that identifies the group of items emitted by thisGroupedObservable.Constructor parameters in io.reactivex.rxjava3.observables with annotations of type Nullable Constructor Description GroupedObservable(K key)Constructs a GroupedObservable with the given key. -
Uses of Nullable in io.reactivex.rxjava3.observers
Method parameters in io.reactivex.rxjava3.observers with annotations of type Nullable Modifier and Type Method Description static @NonNull java.lang.StringBaseTestConsumer. valueAndClass(@Nullable java.lang.Object o)Appends the class name to a non-nullvalue or returns"null".UBaseTestConsumer. withTag(@Nullable java.lang.CharSequence tag)Set the tag displayed along with an assertion failure's other state information. -
Uses of Nullable in io.reactivex.rxjava3.operators
Methods in io.reactivex.rxjava3.operators with annotations of type Nullable Modifier and Type Method Description TSpscLinkedArrayQueue. peek()Returns the next element in this queue without removing it ornullif this queue is emptyTSimplePlainQueue. poll()TSimpleQueue. poll()Tries to dequeue a value (non-null) or returns null if the queue is empty.ESpscArrayQueue. poll()TSpscLinkedArrayQueue. poll()Tries to dequeue a value (non-null) or returns null if the queue is empty. -
Uses of Nullable in io.reactivex.rxjava3.plugins
Fields in io.reactivex.rxjava3.plugins with annotations of type Nullable Modifier and Type Field Description (package private) static @Nullable Consumer<? super java.lang.Throwable>RxJavaPlugins. errorHandler(package private) static @Nullable BooleanSupplierRxJavaPlugins. onBeforeBlocking(package private) static @Nullable Function<? super Completable,? extends Completable>RxJavaPlugins. onCompletableAssembly(package private) static @Nullable BiFunction<? super Completable,? super CompletableObserver,? extends CompletableObserver>RxJavaPlugins. onCompletableSubscribe(package private) static @Nullable Function<? super Scheduler,? extends Scheduler>RxJavaPlugins. onComputationHandler(package private) static @Nullable Function<? super ConnectableFlowable,? extends ConnectableFlowable>RxJavaPlugins. onConnectableFlowableAssembly(package private) static @Nullable Function<? super ConnectableObservable,? extends ConnectableObservable>RxJavaPlugins. onConnectableObservableAssembly(package private) static @Nullable Function<? super Flowable,? extends Flowable>RxJavaPlugins. onFlowableAssembly(package private) static @Nullable BiFunction<? super Flowable,? super org.reactivestreams.Subscriber,? extends org.reactivestreams.Subscriber>RxJavaPlugins. onFlowableSubscribe(package private) static @Nullable Function<? super Supplier<Scheduler>,? extends Scheduler>RxJavaPlugins. onInitComputationHandler(package private) static @Nullable Function<? super Supplier<Scheduler>,? extends Scheduler>RxJavaPlugins. onInitIoHandler(package private) static @Nullable Function<? super Supplier<Scheduler>,? extends Scheduler>RxJavaPlugins. onInitNewThreadHandler(package private) static @Nullable Function<? super Supplier<Scheduler>,? extends Scheduler>RxJavaPlugins. onInitSingleHandler(package private) static @Nullable Function<? super Scheduler,? extends Scheduler>RxJavaPlugins. onIoHandler(package private) static @Nullable Function<? super Maybe,? extends Maybe>RxJavaPlugins. onMaybeAssembly(package private) static @Nullable BiFunction<? super Maybe,? super MaybeObserver,? extends MaybeObserver>RxJavaPlugins. onMaybeSubscribe(package private) static @Nullable Function<? super Scheduler,? extends Scheduler>RxJavaPlugins. onNewThreadHandler(package private) static @Nullable Function<? super Observable,? extends Observable>RxJavaPlugins. onObservableAssembly(package private) static @Nullable BiFunction<? super Observable,? super Observer,? extends Observer>RxJavaPlugins. onObservableSubscribe(package private) static @Nullable Function<? super ParallelFlowable,? extends ParallelFlowable>RxJavaPlugins. onParallelAssembly(package private) static @Nullable BiFunction<? super ParallelFlowable,? super org.reactivestreams.Subscriber[],? extends org.reactivestreams.Subscriber[]>RxJavaPlugins. onParallelSubscribe(package private) static @Nullable Function<? super java.lang.Runnable,? extends java.lang.Runnable>RxJavaPlugins. onScheduleHandler(package private) static @Nullable Function<? super Single,? extends Single>RxJavaPlugins. onSingleAssembly(package private) static @Nullable Function<? super Scheduler,? extends Scheduler>RxJavaPlugins. onSingleHandler(package private) static @Nullable BiFunction<? super Single,? super SingleObserver,? extends SingleObserver>RxJavaPlugins. onSingleSubscribeMethods in io.reactivex.rxjava3.plugins with annotations of type Nullable Modifier and Type Method Description static @Nullable Function<? super Scheduler,? extends Scheduler>RxJavaPlugins. getComputationSchedulerHandler()Returns the current hook function.static @Nullable Consumer<? super java.lang.Throwable>RxJavaPlugins. getErrorHandler()Returns the a hook consumer.static @Nullable Function<? super Supplier<Scheduler>,? extends Scheduler>RxJavaPlugins. getInitComputationSchedulerHandler()Returns the current hook function.static @Nullable Function<? super Supplier<Scheduler>,? extends Scheduler>RxJavaPlugins. getInitIoSchedulerHandler()Returns the current hook function.static @Nullable Function<? super Supplier<Scheduler>,? extends Scheduler>RxJavaPlugins. getInitNewThreadSchedulerHandler()Returns the current hook function.static @Nullable Function<? super Supplier<Scheduler>,? extends Scheduler>RxJavaPlugins. getInitSingleSchedulerHandler()Returns the current hook function.static @Nullable Function<? super Scheduler,? extends Scheduler>RxJavaPlugins. getIoSchedulerHandler()Returns the current hook function.static @Nullable Function<? super Scheduler,? extends Scheduler>RxJavaPlugins. getNewThreadSchedulerHandler()Returns the current hook function.static @Nullable BooleanSupplierRxJavaPlugins. getOnBeforeBlocking()Returns the current blocking handler or null if no custom handler is set.static @Nullable Function<? super Completable,? extends Completable>RxJavaPlugins. getOnCompletableAssembly()Returns the current hook function.static @Nullable BiFunction<? super Completable,? super CompletableObserver,? extends CompletableObserver>RxJavaPlugins. getOnCompletableSubscribe()Returns the current hook function.static @Nullable Function<? super ConnectableFlowable,? extends ConnectableFlowable>RxJavaPlugins. getOnConnectableFlowableAssembly()Returns the current hook function.static @Nullable Function<? super ConnectableObservable,? extends ConnectableObservable>RxJavaPlugins. getOnConnectableObservableAssembly()Returns the current hook function.static @Nullable Function<? super Flowable,? extends Flowable>RxJavaPlugins. getOnFlowableAssembly()Returns the current hook function.static @Nullable BiFunction<? super Flowable,? super org.reactivestreams.Subscriber,? extends org.reactivestreams.Subscriber>RxJavaPlugins. getOnFlowableSubscribe()Returns the current hook function.static @Nullable Function<? super Maybe,? extends Maybe>RxJavaPlugins. getOnMaybeAssembly()Returns the current hook function.static @Nullable BiFunction<? super Maybe,? super MaybeObserver,? extends MaybeObserver>RxJavaPlugins. getOnMaybeSubscribe()Returns the current hook function.static @Nullable Function<? super Observable,? extends Observable>RxJavaPlugins. getOnObservableAssembly()Returns the current hook function.static @Nullable BiFunction<? super Observable,? super Observer,? extends Observer>RxJavaPlugins. getOnObservableSubscribe()Returns the current hook function.static @Nullable Function<? super ParallelFlowable,? extends ParallelFlowable>RxJavaPlugins. getOnParallelAssembly()Returns the current hook function.static @Nullable BiFunction<? super ParallelFlowable,? super org.reactivestreams.Subscriber[],? extends org.reactivestreams.Subscriber[]>RxJavaPlugins. getOnParallelSubscribe()Returns the current hook function.static @Nullable Function<? super Single,? extends Single>RxJavaPlugins. getOnSingleAssembly()Returns the current hook function.static @Nullable BiFunction<? super Single,? super SingleObserver,? extends SingleObserver>RxJavaPlugins. getOnSingleSubscribe()Returns the current hook function.static @Nullable Function<? super java.lang.Runnable,? extends java.lang.Runnable>RxJavaPlugins. getScheduleHandler()Returns the current hook function.static @Nullable Function<? super Scheduler,? extends Scheduler>RxJavaPlugins. getSingleSchedulerHandler()Returns the current hook function.Method parameters in io.reactivex.rxjava3.plugins with annotations of type Nullable Modifier and Type Method Description static voidRxJavaPlugins. setComputationSchedulerHandler(@Nullable Function<? super Scheduler,? extends Scheduler> handler)Sets the specific hook function.static voidRxJavaPlugins. setErrorHandler(@Nullable Consumer<? super java.lang.Throwable> handler)Sets the specific hook function.static voidRxJavaPlugins. setInitComputationSchedulerHandler(@Nullable Function<? super Supplier<Scheduler>,? extends Scheduler> handler)Sets the specific hook function.static voidRxJavaPlugins. setInitIoSchedulerHandler(@Nullable Function<? super Supplier<Scheduler>,? extends Scheduler> handler)Sets the specific hook function.static voidRxJavaPlugins. setInitNewThreadSchedulerHandler(@Nullable Function<? super Supplier<Scheduler>,? extends Scheduler> handler)Sets the specific hook function.static voidRxJavaPlugins. setInitSingleSchedulerHandler(@Nullable Function<? super Supplier<Scheduler>,? extends Scheduler> handler)Sets the specific hook function.static voidRxJavaPlugins. setIoSchedulerHandler(@Nullable Function<? super Scheduler,? extends Scheduler> handler)Sets the specific hook function.static voidRxJavaPlugins. setNewThreadSchedulerHandler(@Nullable Function<? super Scheduler,? extends Scheduler> handler)Sets the specific hook function.static voidRxJavaPlugins. setOnBeforeBlocking(@Nullable BooleanSupplier handler)Set the handler that is called when an operator attempts a blocking await; the handler should return true to prevent the blocking and to signal an IllegalStateException instead.static voidRxJavaPlugins. setOnCompletableAssembly(@Nullable Function<? super Completable,? extends Completable> onCompletableAssembly)Sets the specific hook function.static voidRxJavaPlugins. setOnCompletableSubscribe(@Nullable BiFunction<? super Completable,? super CompletableObserver,? extends CompletableObserver> onCompletableSubscribe)Sets the specific hook function.static voidRxJavaPlugins. setOnConnectableFlowableAssembly(@Nullable Function<? super ConnectableFlowable,? extends ConnectableFlowable> onConnectableFlowableAssembly)Sets the specific hook function.static voidRxJavaPlugins. setOnConnectableObservableAssembly(@Nullable Function<? super ConnectableObservable,? extends ConnectableObservable> onConnectableObservableAssembly)Sets the specific hook function.static voidRxJavaPlugins. setOnFlowableAssembly(@Nullable Function<? super Flowable,? extends Flowable> onFlowableAssembly)Sets the specific hook function.static voidRxJavaPlugins. setOnFlowableSubscribe(@Nullable BiFunction<? super Flowable,? super org.reactivestreams.Subscriber,? extends org.reactivestreams.Subscriber> onFlowableSubscribe)Sets the specific hook function.static voidRxJavaPlugins. setOnMaybeAssembly(@Nullable Function<? super Maybe,? extends Maybe> onMaybeAssembly)Sets the specific hook function.static voidRxJavaPlugins. setOnMaybeSubscribe(@Nullable BiFunction<? super Maybe,@NonNull MaybeObserver,? extends MaybeObserver> onMaybeSubscribe)Sets the specific hook function.static voidRxJavaPlugins. setOnObservableAssembly(@Nullable Function<? super Observable,? extends Observable> onObservableAssembly)Sets the specific hook function.static voidRxJavaPlugins. setOnObservableSubscribe(@Nullable BiFunction<? super Observable,? super Observer,? extends Observer> onObservableSubscribe)Sets the specific hook function.static voidRxJavaPlugins. setOnParallelAssembly(@Nullable Function<? super ParallelFlowable,? extends ParallelFlowable> handler)Sets the specific hook function.static voidRxJavaPlugins. setOnParallelSubscribe(@Nullable BiFunction<? super ParallelFlowable,? super org.reactivestreams.Subscriber[],? extends org.reactivestreams.Subscriber[]> handler)Sets the specific hook function.static voidRxJavaPlugins. setOnSingleAssembly(@Nullable Function<? super Single,? extends Single> onSingleAssembly)Sets the specific hook function.static voidRxJavaPlugins. setOnSingleSubscribe(@Nullable BiFunction<? super Single,? super SingleObserver,? extends SingleObserver> onSingleSubscribe)Sets the specific hook function.static voidRxJavaPlugins. setScheduleHandler(@Nullable Function<? super java.lang.Runnable,? extends java.lang.Runnable> handler)Sets the specific hook function.static voidRxJavaPlugins. setSingleSchedulerHandler(@Nullable Function<? super Scheduler,? extends Scheduler> handler)Sets the specific hook function. -
Uses of Nullable in io.reactivex.rxjava3.processors
Methods in io.reactivex.rxjava3.processors with annotations of type Nullable Modifier and Type Method Description @Nullable java.lang.ThrowableAsyncProcessor. getThrowable()@Nullable java.lang.ThrowableBehaviorProcessor. getThrowable()abstract @Nullable java.lang.ThrowableFlowableProcessor. getThrowable()Returns the error that caused the FlowableProcessor to terminate or null if the FlowableProcessor hasn't terminated yet.@Nullable java.lang.ThrowablePublishProcessor. getThrowable()@Nullable java.lang.ThrowableReplayProcessor. getThrowable()@Nullable java.lang.ThrowableSerializedProcessor. getThrowable()@Nullable java.lang.ThrowableUnicastProcessor. getThrowable()TAsyncProcessor. getValue()Returns a single value this processor currently has or null if no such value exists.TBehaviorProcessor. getValue()Returns a single value the BehaviorProcessor currently has or null if no such value exists.TReplayProcessor.ReplayBuffer. getValue()TReplayProcessor.SizeAndTimeBoundReplayBuffer. getValue()TReplayProcessor.UnboundedReplayBuffer. getValue()TUnicastProcessor.UnicastQueueSubscription. poll() -
Uses of Nullable in io.reactivex.rxjava3.subjects
Methods in io.reactivex.rxjava3.subjects with annotations of type Nullable Modifier and Type Method Description @Nullable java.lang.ThrowableBehaviorSubject. getThrowable()@Nullable java.lang.ThrowableCompletableSubject. getThrowable()Returns the terminal error if this CompletableSubject has been terminated with an error, null otherwise.@Nullable java.lang.ThrowableMaybeSubject. getThrowable()Returns the terminal error if this MaybeSubject has been terminated with an error, null otherwise.@Nullable java.lang.ThrowablePublishSubject. getThrowable()@Nullable java.lang.ThrowableReplaySubject. getThrowable()@Nullable java.lang.ThrowableSerializedSubject. getThrowable()@Nullable java.lang.ThrowableSingleSubject. getThrowable()Returns the terminal error if this SingleSubject has been terminated with an error, null otherwise.abstract @Nullable java.lang.ThrowableSubject. getThrowable()Returns the error that caused the Subject to terminate or null if the Subject hasn't terminated yet.@Nullable java.lang.ThrowableUnicastSubject. getThrowable()TAsyncSubject. getValue()Returns a single value the Subject currently has or null if no such value exists.TBehaviorSubject. getValue()Returns a single value the Subject currently has or null if no such value exists.TMaybeSubject. getValue()Returns the success value if this MaybeSubject was terminated with a success value.TReplaySubject. getValue()Returns a single value the Subject currently has or null if no such value exists.TReplaySubject.ReplayBuffer. getValue()TReplaySubject.SizeAndTimeBoundReplayBuffer. getValue()TReplaySubject.SizeBoundReplayBuffer. getValue()TReplaySubject.UnboundedReplayBuffer. getValue()TSingleSubject. getValue()Returns the success value if this SingleSubject was terminated with a success value.TUnicastSubject.UnicastQueueDisposable. poll()
-