Uses of Interface
io.reactivex.rxjava3.core.SingleObserver
-
Packages that use SingleObserver Package Description io.reactivex.rxjava3.core Base reactive classes:Flowable,Observable,Single,MaybeandCompletable; base reactive consumers; other common base interfaces.io.reactivex.rxjava3.internal.disposables io.reactivex.rxjava3.internal.jdk8 io.reactivex.rxjava3.internal.observers io.reactivex.rxjava3.internal.operators.completable io.reactivex.rxjava3.internal.operators.flowable io.reactivex.rxjava3.internal.operators.maybe io.reactivex.rxjava3.internal.operators.mixed io.reactivex.rxjava3.internal.operators.observable io.reactivex.rxjava3.internal.operators.single io.reactivex.rxjava3.internal.util 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.plugins Contains the central plugin handlerRxJavaPluginsclass to hook into the lifecycle of the base reactive types and schedulers.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 SingleObserver in io.reactivex.rxjava3.core
Methods in io.reactivex.rxjava3.core with type parameters of type SingleObserver Modifier and Type Method Description <@NonNull E extends SingleObserver<? super @NonNull T>>
ESingle. subscribeWith(@NonNull E observer)Subscribes a givenSingleObserver(subclass) to thisSingleand returns the givenSingleObserveras is.Methods in io.reactivex.rxjava3.core that return SingleObserver Modifier and Type Method Description @NonNull SingleObserver<? super Upstream>SingleOperator. apply(@NonNull SingleObserver<? super @NonNull Downstream> observer)Applies a function to the childSingleObserverand returns a new parentSingleObserver.Methods in io.reactivex.rxjava3.core with parameters of type SingleObserver Modifier and Type Method Description @NonNull SingleObserver<? super Upstream>SingleOperator. apply(@NonNull SingleObserver<? super @NonNull Downstream> observer)Applies a function to the childSingleObserverand returns a new parentSingleObserver.voidSingle. blockingSubscribe(@NonNull SingleObserver<? super @NonNull T> observer)Subscribes to the currentSingleand calls the appropriateSingleObservermethod on the current thread.voidSingle. safeSubscribe(@NonNull SingleObserver<? super @NonNull T> observer)Wraps the givenSingleObserver, catches anyRuntimeExceptions thrown by itsonSubscribe(Disposable),onSuccess(Object)oronError(Throwable)methods* and routes those to the global error handler viaRxJavaPlugins.onError(Throwable).voidSingle. subscribe(@NonNull SingleObserver<? super @NonNull T> observer)voidSingleSource. subscribe(@NonNull SingleObserver<? super @NonNull T> observer)Subscribes the givenSingleObserverto thisSingleSourceinstance.protected abstract voidSingle. subscribeActual(@NonNull SingleObserver<? super @NonNull T> observer)Implement this method in subclasses to handle the incomingSingleObservers. -
Uses of SingleObserver in io.reactivex.rxjava3.internal.disposables
Methods in io.reactivex.rxjava3.internal.disposables with parameters of type SingleObserver Modifier and Type Method Description static voidEmptyDisposable. error(java.lang.Throwable e, SingleObserver<?> observer) -
Uses of SingleObserver in io.reactivex.rxjava3.internal.jdk8
Classes in io.reactivex.rxjava3.internal.jdk8 that implement SingleObserver Modifier and Type Class Description classCompletionStageConsumer<T>Class that extends CompletableFuture and converts multiple types of reactive consumers and their signals into completion signals.(package private) static classMaybeFlattenStreamAsFlowable.FlattenStreamMultiObserver<T,R>(package private) static classMaybeFlattenStreamAsObservable.FlattenStreamMultiObserver<T,R>(package private) static classSingleMapOptional.MapOptionalSingleObserver<T,R>Fields in io.reactivex.rxjava3.internal.jdk8 declared as SingleObserver Modifier and Type Field Description (package private) SingleObserver<? super R>FlowableCollectWithCollectorSingle.CollectorSingleObserver. downstream(package private) SingleObserver<? super R>ObservableCollectWithCollectorSingle.CollectorSingleObserver. downstream(package private) SingleObserver<? super T>SingleFromCompletionStage.CompletionStageHandler. downstreamMethods in io.reactivex.rxjava3.internal.jdk8 with parameters of type SingleObserver Modifier and Type Method Description protected voidFlowableCollectWithCollectorSingle. subscribeActual(@NonNull SingleObserver<? super R> observer)protected voidObservableCollectWithCollectorSingle. subscribeActual(@NonNull SingleObserver<? super R> observer)protected voidSingleFromCompletionStage. subscribeActual(SingleObserver<? super T> observer)Constructors in io.reactivex.rxjava3.internal.jdk8 with parameters of type SingleObserver Constructor Description CollectorSingleObserver(SingleObserver<? super R> downstream, A container, java.util.function.BiConsumer<A,T> accumulator, java.util.function.Function<A,R> finisher)CollectorSingleObserver(SingleObserver<? super R> downstream, A container, java.util.function.BiConsumer<A,T> accumulator, java.util.function.Function<A,R> finisher)CompletionStageHandler(SingleObserver<? super T> downstream, FlowableFromCompletionStage.BiConsumerAtomicReference<T> whenReference) -
Uses of SingleObserver in io.reactivex.rxjava3.internal.observers
Classes in io.reactivex.rxjava3.internal.observers that implement SingleObserver Modifier and Type Class Description classBiConsumerSingleObserver<T>classBlockingDisposableMultiObserver<T>Blocks until the upstream terminates and dispatches the outcome to the actual observer.classBlockingMultiObserver<T>A combined Observer that awaits the success or error signal via a CountDownLatch.classConsumerSingleObserver<T>classDisposableAutoReleaseMultiObserver<T>Wraps lambda callbacks and when the upstream terminates or this (Single | Maybe | Completable) observer gets disposed, removes itself from aCompositeDisposable.classFutureMultiObserver<T>An Observer + Future that expects exactly one upstream value and provides it via the (blocking) Future API.classResumeSingleObserver<T>A SingleObserver implementation used for subscribing to the actual SingleSource and replace the current Disposable in a parent AtomicReference.classSafeSingleObserver<T>Wraps anotherSingleObserverand catches exceptions thrown by itsonSubscribe,onSuccessoronErrormethods despite the protocol forbids it.Fields in io.reactivex.rxjava3.internal.observers declared as SingleObserver Modifier and Type Field Description (package private) SingleObserver<? super T>ResumeSingleObserver. downstream(package private) SingleObserver<? super T>SafeSingleObserver. downstreamMethods in io.reactivex.rxjava3.internal.observers with parameters of type SingleObserver Modifier and Type Method Description voidBlockingDisposableMultiObserver. blockingConsume(SingleObserver<? super T> observer)Constructors in io.reactivex.rxjava3.internal.observers with parameters of type SingleObserver Constructor Description ResumeSingleObserver(java.util.concurrent.atomic.AtomicReference<Disposable> parent, SingleObserver<? super T> downstream)SafeSingleObserver(SingleObserver<? super T> downstream) -
Uses of SingleObserver in io.reactivex.rxjava3.internal.operators.completable
Classes in io.reactivex.rxjava3.internal.operators.completable that implement SingleObserver Modifier and Type Class Description (package private) static classCompletableFromSingle.CompletableFromSingleObserver<T>Fields in io.reactivex.rxjava3.internal.operators.completable declared as SingleObserver Modifier and Type Field Description private SingleObserver<? super T>CompletableToSingle.ToSingle. observerMethods in io.reactivex.rxjava3.internal.operators.completable with parameters of type SingleObserver Modifier and Type Method Description protected voidCompletableMaterialize. subscribeActual(SingleObserver<? super Notification<T>> observer)protected voidCompletableToSingle. subscribeActual(SingleObserver<? super T> observer)Constructors in io.reactivex.rxjava3.internal.operators.completable with parameters of type SingleObserver Constructor Description ToSingle(SingleObserver<? super T> observer) -
Uses of SingleObserver in io.reactivex.rxjava3.internal.operators.flowable
Classes in io.reactivex.rxjava3.internal.operators.flowable that implement SingleObserver Modifier and Type Class Description (package private) static classFlowableConcatWithSingle.ConcatWithSubscriber<T>(package private) classFlowableFlatMapSingle.FlatMapSingleSubscriber.InnerObserver(package private) static classFlowableMergeWithSingle.MergeWithObserver.OtherObserver<T>Fields in io.reactivex.rxjava3.internal.operators.flowable declared as SingleObserver Modifier and Type Field Description (package private) SingleObserver<? super java.lang.Boolean>FlowableAllSingle.AllSubscriber. downstream(package private) SingleObserver<? super java.lang.Boolean>FlowableAnySingle.AnySubscriber. downstream(package private) SingleObserver<? super U>FlowableCollectSingle.CollectSubscriber. downstream(package private) SingleObserver<? super java.lang.Long>FlowableCountSingle.CountSubscriber. downstream(package private) SingleObserver<? super T>FlowableElementAtSingle.ElementAtSubscriber. downstream(package private) SingleObserver<? super T>FlowableLastSingle.LastSubscriber. downstream(package private) SingleObserver<? super R>FlowableReduceSeedSingle.ReduceSeedObserver. downstream(package private) SingleObserver<? super java.lang.Boolean>FlowableSequenceEqualSingle.EqualCoordinator. downstream(package private) SingleObserver<? super T>FlowableSingleSingle.SingleElementSubscriber. downstream(package private) SingleObserver<? super U>FlowableToListSingle.ToListSubscriber. downstreamMethods in io.reactivex.rxjava3.internal.operators.flowable with parameters of type SingleObserver Modifier and Type Method Description protected voidFlowableAllSingle. subscribeActual(SingleObserver<? super java.lang.Boolean> observer)protected voidFlowableAnySingle. subscribeActual(SingleObserver<? super java.lang.Boolean> observer)protected voidFlowableCollectSingle. subscribeActual(SingleObserver<? super U> observer)protected voidFlowableCountSingle. subscribeActual(SingleObserver<? super java.lang.Long> observer)protected voidFlowableElementAtSingle. subscribeActual(SingleObserver<? super T> observer)protected voidFlowableLastSingle. subscribeActual(SingleObserver<? super T> observer)protected voidFlowableReduceSeedSingle. subscribeActual(SingleObserver<? super R> observer)protected voidFlowableReduceWithSingle. subscribeActual(SingleObserver<? super R> observer)voidFlowableSequenceEqualSingle. subscribeActual(SingleObserver<? super java.lang.Boolean> observer)protected voidFlowableSingleSingle. subscribeActual(SingleObserver<? super T> observer)protected voidFlowableToListSingle. subscribeActual(SingleObserver<? super U> observer)Constructors in io.reactivex.rxjava3.internal.operators.flowable with parameters of type SingleObserver Constructor Description AllSubscriber(SingleObserver<? super java.lang.Boolean> actual, Predicate<? super T> predicate)AnySubscriber(SingleObserver<? super java.lang.Boolean> actual, Predicate<? super T> predicate)CollectSubscriber(SingleObserver<? super U> actual, U u, BiConsumer<? super U,? super T> collector)CountSubscriber(SingleObserver<? super java.lang.Long> downstream)ElementAtSubscriber(SingleObserver<? super T> actual, long index, T defaultValue)EqualCoordinator(SingleObserver<? super java.lang.Boolean> actual, int prefetch, BiPredicate<? super T,? super T> comparer)LastSubscriber(SingleObserver<? super T> actual, T defaultItem)ReduceSeedObserver(SingleObserver<? super R> actual, BiFunction<R,? super T,R> reducer, R value)SingleElementSubscriber(SingleObserver<? super T> actual, T defaultValue)ToListSubscriber(SingleObserver<? super U> actual, U collection) -
Uses of SingleObserver in io.reactivex.rxjava3.internal.operators.maybe
Classes in io.reactivex.rxjava3.internal.operators.maybe that implement SingleObserver Modifier and Type Class Description (package private) static classMaybeFilterSingle.FilterMaybeObserver<T>(package private) static classMaybeFlatMapSingle.FlatMapSingleObserver<R>(package private) static classMaybeFromSingle.FromSingleObserver<T>static classMaybeOnErrorComplete.OnErrorCompleteMultiObserver<T>(package private) static classMaybeSwitchIfEmptySingle.SwitchIfEmptyMaybeObserver.OtherSingleObserver<T>Fields in io.reactivex.rxjava3.internal.operators.maybe declared as SingleObserver Modifier and Type Field Description (package private) SingleObserver<? super java.lang.Boolean>MaybeContains.ContainsMaybeObserver. downstream(package private) SingleObserver<? super java.lang.Long>MaybeCount.CountMaybeObserver. downstream(package private) SingleObserver<? super java.lang.Boolean>MaybeEqualSingle.EqualCoordinator. downstream(package private) SingleObserver<? super java.lang.Boolean>MaybeIsEmptySingle.IsEmptyMaybeObserver. downstream(package private) SingleObserver<? super T>MaybeSwitchIfEmptySingle.SwitchIfEmptyMaybeObserver. downstream(package private) SingleObserver<? super T>MaybeSwitchIfEmptySingle.SwitchIfEmptyMaybeObserver.OtherSingleObserver. downstream(package private) SingleObserver<? super T>MaybeToSingle.ToSingleMaybeSubscriber. downstreamMethods in io.reactivex.rxjava3.internal.operators.maybe with parameters of type SingleObserver Modifier and Type Method Description protected voidMaybeContains. subscribeActual(SingleObserver<? super java.lang.Boolean> observer)protected voidMaybeCount. subscribeActual(SingleObserver<? super java.lang.Long> observer)protected voidMaybeEqualSingle. subscribeActual(SingleObserver<? super java.lang.Boolean> observer)protected voidMaybeIsEmptySingle. subscribeActual(SingleObserver<? super java.lang.Boolean> observer)protected voidMaybeMaterialize. subscribeActual(SingleObserver<? super Notification<T>> observer)protected voidMaybeSwitchIfEmptySingle. subscribeActual(SingleObserver<? super T> observer)protected voidMaybeToSingle. subscribeActual(SingleObserver<? super T> observer)Constructors in io.reactivex.rxjava3.internal.operators.maybe with parameters of type SingleObserver Constructor Description ContainsMaybeObserver(SingleObserver<? super java.lang.Boolean> actual, java.lang.Object value)CountMaybeObserver(SingleObserver<? super java.lang.Long> downstream)EqualCoordinator(SingleObserver<? super java.lang.Boolean> actual, BiPredicate<? super T,? super T> isEqual)IsEmptyMaybeObserver(SingleObserver<? super java.lang.Boolean> downstream)OtherSingleObserver(SingleObserver<? super T> actual, java.util.concurrent.atomic.AtomicReference<Disposable> parent)SwitchIfEmptyMaybeObserver(SingleObserver<? super T> actual, SingleSource<? extends T> other)ToSingleMaybeSubscriber(SingleObserver<? super T> actual, T defaultValue) -
Uses of SingleObserver in io.reactivex.rxjava3.internal.operators.mixed
Classes in io.reactivex.rxjava3.internal.operators.mixed that implement SingleObserver Modifier and Type Class Description (package private) static classFlowableConcatMapSingle.ConcatMapSingleSubscriber.ConcatMapSingleObserver<R>(package private) static classFlowableSwitchMapSingle.SwitchMapSingleSubscriber.SwitchMapSingleObserver<R>classMaterializeSingleObserver<T>A consumer that implements the consumer types of Maybe, Single and Completable and turns their signals into Notifications for a SingleObserver.(package private) static classObservableConcatMapSingle.ConcatMapSingleMainObserver.ConcatMapSingleObserver<R>(package private) static classObservableSwitchMapSingle.SwitchMapSingleMainObserver.SwitchMapSingleObserver<R>(package private) static classSingleFlatMapObservable.FlatMapObserver<T,R>Fields in io.reactivex.rxjava3.internal.operators.mixed declared as SingleObserver Modifier and Type Field Description (package private) SingleObserver<? super Notification<T>>MaterializeSingleObserver. downstreamConstructors in io.reactivex.rxjava3.internal.operators.mixed with parameters of type SingleObserver Constructor Description MaterializeSingleObserver(SingleObserver<? super Notification<T>> downstream) -
Uses of SingleObserver in io.reactivex.rxjava3.internal.operators.observable
Classes in io.reactivex.rxjava3.internal.operators.observable that implement SingleObserver Modifier and Type Class Description (package private) static classObservableConcatWithSingle.ConcatWithObserver<T>(package private) classObservableFlatMapSingle.FlatMapSingleObserver.InnerObserver(package private) static classObservableMergeWithSingle.MergeWithObserver.OtherObserver<T>Fields in io.reactivex.rxjava3.internal.operators.observable declared as SingleObserver Modifier and Type Field Description (package private) SingleObserver<? super java.lang.Boolean>ObservableAllSingle.AllObserver. downstream(package private) SingleObserver<? super java.lang.Boolean>ObservableAnySingle.AnyObserver. downstream(package private) SingleObserver<? super U>ObservableCollectSingle.CollectObserver. downstream(package private) SingleObserver<? super java.lang.Long>ObservableCountSingle.CountObserver. downstream(package private) SingleObserver<? super T>ObservableElementAtSingle.ElementAtObserver. downstream(package private) SingleObserver<? super T>ObservableLastSingle.LastObserver. downstream(package private) SingleObserver<? super R>ObservableReduceSeedSingle.ReduceSeedObserver. downstream(package private) SingleObserver<? super java.lang.Boolean>ObservableSequenceEqualSingle.EqualCoordinator. downstream(package private) SingleObserver<? super T>ObservableSingleSingle.SingleElementObserver. downstream(package private) SingleObserver<? super U>ObservableToListSingle.ToListObserver. downstreamMethods in io.reactivex.rxjava3.internal.operators.observable with parameters of type SingleObserver Modifier and Type Method Description protected voidObservableAllSingle. subscribeActual(SingleObserver<? super java.lang.Boolean> t)protected voidObservableAnySingle. subscribeActual(SingleObserver<? super java.lang.Boolean> t)protected voidObservableCollectSingle. subscribeActual(SingleObserver<? super U> t)voidObservableCountSingle. subscribeActual(SingleObserver<? super java.lang.Long> t)voidObservableElementAtSingle. subscribeActual(SingleObserver<? super T> t)protected voidObservableLastSingle. subscribeActual(SingleObserver<? super T> observer)protected voidObservableReduceSeedSingle. subscribeActual(SingleObserver<? super R> observer)protected voidObservableReduceWithSingle. subscribeActual(SingleObserver<? super R> observer)voidObservableSequenceEqualSingle. subscribeActual(SingleObserver<? super java.lang.Boolean> observer)voidObservableSingleSingle. subscribeActual(SingleObserver<? super T> t)voidObservableToListSingle. subscribeActual(SingleObserver<? super U> t)Constructors in io.reactivex.rxjava3.internal.operators.observable with parameters of type SingleObserver Constructor Description AllObserver(SingleObserver<? super java.lang.Boolean> actual, Predicate<? super T> predicate)AnyObserver(SingleObserver<? super java.lang.Boolean> actual, Predicate<? super T> predicate)CollectObserver(SingleObserver<? super U> actual, U u, BiConsumer<? super U,? super T> collector)CountObserver(SingleObserver<? super java.lang.Long> downstream)ElementAtObserver(SingleObserver<? super T> actual, long index, T defaultValue)EqualCoordinator(SingleObserver<? super java.lang.Boolean> actual, int bufferSize, ObservableSource<? extends T> first, ObservableSource<? extends T> second, BiPredicate<? super T,? super T> comparer)LastObserver(SingleObserver<? super T> actual, T defaultItem)ReduceSeedObserver(SingleObserver<? super R> actual, BiFunction<R,? super T,R> reducer, R value)SingleElementObserver(SingleObserver<? super T> actual, T defaultValue)ToListObserver(SingleObserver<? super U> actual, U collection) -
Uses of SingleObserver in io.reactivex.rxjava3.internal.operators.single
Fields in io.reactivex.rxjava3.internal.operators.single declared as SingleObserver Modifier and Type Field Description (package private) SingleObserver<? super T>SingleAmb.AmbSingleObserver. downstream(package private) SingleObserver<? super T>SingleCache.CacheDisposable. downstreamprivate SingleObserver<? super java.lang.Boolean>SingleContains.ContainsSingleObserver. downstream(package private) SingleObserver<? super T>SingleCreate.Emitter. downstream(package private) SingleObserver<? super T>SingleDelay.Delay. downstream(package private) SingleObserver<? super T>SingleDelayWithCompletable.OtherObserver. downstream(package private) SingleObserver<? super T>SingleDelayWithObservable.OtherSubscriber. downstream(package private) SingleObserver<? super T>SingleDelayWithPublisher.OtherSubscriber. downstream(package private) SingleObserver<? super T>SingleDelayWithSingle.OtherObserver. downstream(package private) SingleObserver<? super T>SingleDetach.DetachSingleObserver. downstream(package private) SingleObserver<? super T>SingleDoAfterSuccess.DoAfterObserver. downstream(package private) SingleObserver<? super T>SingleDoAfterTerminate.DoAfterTerminateObserver. downstream(package private) SingleObserver<? super T>SingleDoFinally.DoFinallyObserver. downstream(package private) SingleObserver<? super T>SingleDoOnDispose.DoOnDisposeObserver. downstreamprivate SingleObserver<? super T>SingleDoOnError.DoOnError. downstreamprivate SingleObserver<? super T>SingleDoOnEvent.DoOnEvent. downstream(package private) SingleObserver<? super T>SingleDoOnLifecycle.SingleLifecycleObserver. downstream(package private) SingleObserver<? super T>SingleDoOnSubscribe.DoOnSubscribeSingleObserver. downstream(package private) SingleObserver<? super T>SingleDoOnSuccess.DoOnSuccess. downstream(package private) SingleObserver<? super T>SingleDoOnTerminate.DoOnTerminate. downstream(package private) SingleObserver<? super java.lang.Boolean>SingleEquals.InnerObserver. downstream(package private) SingleObserver<? super R>SingleFlatMap.SingleFlatMapCallback. downstream(package private) SingleObserver<? super R>SingleFlatMap.SingleFlatMapCallback.FlatMapSingleObserver. downstream(package private) SingleObserver<? super R>SingleFlatMapBiSelector.FlatMapBiMainObserver.InnerObserver. downstream(package private) SingleObserver<? super R>SingleFlatMapNotification.FlatMapSingleObserver. downstream(package private) SingleObserver<? super T>SingleFromPublisher.ToSingleObserver. downstream(package private) SingleObserver<? super T>SingleHide.HideSingleObserver. downstream(package private) SingleObserver<? super T>SingleObserveOn.ObserveOnSingleObserver. downstream(package private) SingleObserver<? super T>SingleResumeNext.ResumeMainSingleObserver. downstream(package private) SingleObserver<? super T>SingleSubscribeOn.SubscribeOnObserver. downstream(package private) SingleObserver<? super T>SingleTakeUntil.TakeUntilMainObserver. downstream(package private) SingleObserver<? super Timed<T>>SingleTimeInterval.TimeIntervalSingleObserver. downstream(package private) SingleObserver<? super T>SingleTimeout.TimeoutMainObserver. downstream(package private) SingleObserver<? super T>SingleTimeout.TimeoutMainObserver.TimeoutFallbackObserver. downstream(package private) SingleObserver<? super java.lang.Long>SingleTimer.TimerDisposable. downstream(package private) SingleObserver<? super T>SingleUnsubscribeOn.UnsubscribeOnSingleObserver. downstream(package private) SingleObserver<? super T>SingleUsing.UsingSingleObserver. downstream(package private) SingleObserver<? super R>SingleZipArray.ZipCoordinator. downstreamprivate SingleObserver<? super T>SingleOnErrorReturn.OnErrorReturn. observer(package private) SingleObserver<? super R>SingleMap.MapSingleObserver. tMethods in io.reactivex.rxjava3.internal.operators.single that return SingleObserver Modifier and Type Method Description static <T> SingleObserver<T>SingleToObservable. create(Observer<? super T> downstream)Creates aSingleObserverwrapper around aObserver.Methods in io.reactivex.rxjava3.internal.operators.single with parameters of type SingleObserver Modifier and Type Method Description protected voidSingleAmb. subscribeActual(SingleObserver<? super T> observer)protected voidSingleCache. subscribeActual(SingleObserver<? super T> observer)protected voidSingleContains. subscribeActual(SingleObserver<? super java.lang.Boolean> observer)protected voidSingleCreate. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDefer. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDelay. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDelayWithCompletable. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDelayWithObservable. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDelayWithPublisher. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDelayWithSingle. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDetach. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoAfterSuccess. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoAfterTerminate. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoFinally. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoOnDispose. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoOnError. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoOnEvent. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoOnLifecycle. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoOnSubscribe. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoOnSuccess. subscribeActual(SingleObserver<? super T> observer)protected voidSingleDoOnTerminate. subscribeActual(SingleObserver<? super T> observer)protected voidSingleEquals. subscribeActual(SingleObserver<? super java.lang.Boolean> observer)protected voidSingleError. subscribeActual(SingleObserver<? super T> observer)protected voidSingleFlatMap. subscribeActual(SingleObserver<? super R> downstream)protected voidSingleFlatMapBiSelector. subscribeActual(SingleObserver<? super R> observer)protected voidSingleFlatMapNotification. subscribeActual(SingleObserver<? super R> observer)protected voidSingleFromCallable. subscribeActual(SingleObserver<? super T> observer)protected voidSingleFromPublisher. subscribeActual(SingleObserver<? super T> observer)protected voidSingleFromSupplier. subscribeActual(SingleObserver<? super T> observer)protected voidSingleFromUnsafeSource. subscribeActual(SingleObserver<? super T> observer)protected voidSingleHide. subscribeActual(SingleObserver<? super T> observer)protected voidSingleJust. subscribeActual(SingleObserver<? super T> observer)protected voidSingleLift. subscribeActual(SingleObserver<? super R> observer)protected voidSingleMap. subscribeActual(SingleObserver<? super R> t)protected voidSingleMaterialize. subscribeActual(SingleObserver<? super Notification<T>> observer)protected voidSingleNever. subscribeActual(SingleObserver<? super java.lang.Object> observer)protected voidSingleObserveOn. subscribeActual(SingleObserver<? super T> observer)protected voidSingleOnErrorReturn. subscribeActual(SingleObserver<? super T> observer)protected voidSingleResumeNext. subscribeActual(SingleObserver<? super T> observer)protected voidSingleSubscribeOn. subscribeActual(SingleObserver<? super T> observer)protected voidSingleTakeUntil. subscribeActual(SingleObserver<? super T> observer)protected voidSingleTimeInterval. subscribeActual(@NonNull SingleObserver<? super @NonNull Timed<T>> observer)protected voidSingleTimeout. subscribeActual(SingleObserver<? super T> observer)protected voidSingleTimer. subscribeActual(SingleObserver<? super java.lang.Long> observer)protected voidSingleUnsubscribeOn. subscribeActual(SingleObserver<? super T> observer)protected voidSingleUsing. subscribeActual(SingleObserver<? super T> observer)protected voidSingleZipArray. subscribeActual(SingleObserver<? super R> observer)protected voidSingleZipIterable. subscribeActual(SingleObserver<? super R> observer)Constructors in io.reactivex.rxjava3.internal.operators.single with parameters of type SingleObserver Constructor Description AmbSingleObserver(SingleObserver<? super T> observer, CompositeDisposable set, java.util.concurrent.atomic.AtomicBoolean winner)CacheDisposable(SingleObserver<? super T> actual, SingleCache<T> parent)ContainsSingleObserver(SingleObserver<? super java.lang.Boolean> observer)Delay(SequentialDisposable sd, SingleObserver<? super T> observer)DetachSingleObserver(SingleObserver<? super T> downstream)DoAfterObserver(SingleObserver<? super T> actual, Consumer<? super T> onAfterSuccess)DoAfterTerminateObserver(SingleObserver<? super T> actual, Action onAfterTerminate)DoFinallyObserver(SingleObserver<? super T> actual, Action onFinally)DoOnDisposeObserver(SingleObserver<? super T> actual, Action onDispose)DoOnError(SingleObserver<? super T> observer)DoOnEvent(SingleObserver<? super T> observer)DoOnSubscribeSingleObserver(SingleObserver<? super T> actual, Consumer<? super Disposable> onSubscribe)DoOnSuccess(SingleObserver<? super T> observer)DoOnTerminate(SingleObserver<? super T> observer)Emitter(SingleObserver<? super T> downstream)FlatMapBiMainObserver(SingleObserver<? super R> actual, Function<? super T,? extends SingleSource<? extends U>> mapper, BiFunction<? super T,? super U,? extends R> resultSelector)FlatMapSingleObserver(java.util.concurrent.atomic.AtomicReference<Disposable> parent, SingleObserver<? super R> downstream)FlatMapSingleObserver(SingleObserver<? super R> actual, Function<? super T,? extends SingleSource<? extends R>> onSuccessMapper, Function<? super java.lang.Throwable,? extends SingleSource<? extends R>> onErrorMapper)HideSingleObserver(SingleObserver<? super T> downstream)InnerObserver(int index, CompositeDisposable set, java.lang.Object[] values, SingleObserver<? super java.lang.Boolean> observer, java.util.concurrent.atomic.AtomicInteger count)InnerObserver(SingleObserver<? super R> actual, BiFunction<? super T,? super U,? extends R> resultSelector)MapSingleObserver(SingleObserver<? super R> t, Function<? super T,? extends R> mapper)ObserveOnSingleObserver(SingleObserver<? super T> actual, Scheduler scheduler)OnErrorReturn(SingleObserver<? super T> observer)OtherObserver(SingleObserver<? super T> actual, SingleSource<T> source)OtherObserver(SingleObserver<? super T> actual, SingleSource<T> source)OtherSubscriber(SingleObserver<? super T> actual, SingleSource<T> source)OtherSubscriber(SingleObserver<? super T> actual, SingleSource<T> source)ResumeMainSingleObserver(SingleObserver<? super T> actual, Function<? super java.lang.Throwable,? extends SingleSource<? extends T>> nextFunction)SingleFlatMapCallback(SingleObserver<? super R> actual, Function<? super T,? extends SingleSource<? extends R>> mapper)SingleLifecycleObserver(SingleObserver<? super T> downstream, Consumer<? super Disposable> onSubscribe, Action onDispose)SubscribeOnObserver(SingleObserver<? super T> actual, SingleSource<? extends T> source)TakeUntilMainObserver(SingleObserver<? super T> downstream)TimeIntervalSingleObserver(SingleObserver<? super Timed<T>> downstream, java.util.concurrent.TimeUnit unit, Scheduler scheduler, boolean start)TimeoutFallbackObserver(SingleObserver<? super T> downstream)TimeoutMainObserver(SingleObserver<? super T> actual, SingleSource<? extends T> other, long timeout, java.util.concurrent.TimeUnit unit)TimerDisposable(SingleObserver<? super java.lang.Long> downstream)ToSingleObserver(SingleObserver<? super T> downstream)UnsubscribeOnSingleObserver(SingleObserver<? super T> actual, Scheduler scheduler)UsingSingleObserver(SingleObserver<? super T> actual, U resource, boolean eager, Consumer<? super U> disposer)ZipCoordinator(SingleObserver<? super R> observer, int n, Function<? super java.lang.Object[],? extends R> zipper) -
Uses of SingleObserver in io.reactivex.rxjava3.internal.util
Classes in io.reactivex.rxjava3.internal.util that implement SingleObserver Modifier and Type Class Description classEmptyComponentSingleton implementing many interfaces as empty.Methods in io.reactivex.rxjava3.internal.util with parameters of type SingleObserver Modifier and Type Method Description voidAtomicThrowable. tryTerminateConsumer(SingleObserver<?> consumer)Tries to terminate this atomic throwable (by swapping in the TERMINATED indicator) and notifies the consumer if there was no error (onComplete) or there was a non-null, non-indicator exception contained before (onError). -
Uses of SingleObserver in io.reactivex.rxjava3.observers
Classes in io.reactivex.rxjava3.observers that implement SingleObserver Modifier and Type Class Description classDisposableSingleObserver<T>An abstractSingleObserverthat allows asynchronous cancellation by implementingDisposable.classResourceSingleObserver<T>An abstractSingleObserverthat allows asynchronous cancellation of its subscription and the associated resources.classTestObserver<T>AnObserver,MaybeObserver,SingleObserverandCompletableObservercomposite that can record events fromObservables,Maybes,Singles andCompletables and allows making assertions about them. -
Uses of SingleObserver in io.reactivex.rxjava3.plugins
Fields in io.reactivex.rxjava3.plugins with type parameters of type SingleObserver Modifier and Type Field Description (package private) static @Nullable BiFunction<? super Single,? super SingleObserver,? extends SingleObserver>RxJavaPlugins. onSingleSubscribe(package private) static @Nullable BiFunction<? super Single,? super SingleObserver,? extends SingleObserver>RxJavaPlugins. onSingleSubscribeMethods in io.reactivex.rxjava3.plugins that return SingleObserver Modifier and Type Method Description static <@NonNull T>
@NonNull SingleObserver<? super T>RxJavaPlugins. onSubscribe(@NonNull Single<@NonNull T> source, @NonNull SingleObserver<? super @NonNull T> observer)Calls the associated hook function.Methods in io.reactivex.rxjava3.plugins that return types with arguments of type SingleObserver Modifier and Type Method Description static @Nullable BiFunction<? super Single,? super SingleObserver,? extends SingleObserver>RxJavaPlugins. getOnSingleSubscribe()Returns the current hook function.static @Nullable BiFunction<? super Single,? super SingleObserver,? extends SingleObserver>RxJavaPlugins. getOnSingleSubscribe()Returns the current hook function.Methods in io.reactivex.rxjava3.plugins with parameters of type SingleObserver Modifier and Type Method Description static <@NonNull T>
@NonNull SingleObserver<? super T>RxJavaPlugins. onSubscribe(@NonNull Single<@NonNull T> source, @NonNull SingleObserver<? super @NonNull T> observer)Calls the associated hook function.Method parameters in io.reactivex.rxjava3.plugins with type arguments of type SingleObserver Modifier and Type Method Description static voidRxJavaPlugins. setOnSingleSubscribe(@Nullable BiFunction<? super Single,? super SingleObserver,? extends SingleObserver> onSingleSubscribe)Sets the specific hook function.static voidRxJavaPlugins. setOnSingleSubscribe(@Nullable BiFunction<? super Single,? super SingleObserver,? extends SingleObserver> onSingleSubscribe)Sets the specific hook function. -
Uses of SingleObserver in io.reactivex.rxjava3.subjects
Classes in io.reactivex.rxjava3.subjects that implement SingleObserver Modifier and Type Class Description classSingleSubject<T>Represents a hot Single-like source and consumer of events similar to Subjects.Fields in io.reactivex.rxjava3.subjects declared as SingleObserver Modifier and Type Field Description (package private) SingleObserver<? super T>SingleSubject.SingleDisposable. downstreamMethods in io.reactivex.rxjava3.subjects with parameters of type SingleObserver Modifier and Type Method Description protected voidSingleSubject. subscribeActual(@NonNull SingleObserver<? super T> observer)Constructors in io.reactivex.rxjava3.subjects with parameters of type SingleObserver Constructor Description SingleDisposable(SingleObserver<? super T> actual, SingleSubject<T> parent)
-