Top Description Inners Fields Constructors Methods
io.reactivex.rxjava3.internal.operators.maybe

public final Class MaybeUnsubscribeOn<T>

extends AbstractMaybeWithUpstream<T, T>
Class Inheritance
Type Parameters
<T>
the value type
Imports
java.util.concurrent.atomic.AtomicReference, io.reactivex.rxjava3.core.*, io.reactivex.rxjava3.disposables.Disposable, io.reactivex.rxjava3.internal.disposables.DisposableHelper

Makes sure a dispose() call from downstream happens on the specified scheduler.

Nested and Inner Type Summary

Modifier and TypeClass and Description
pack-priv static class

Field Summary

Modifier and TypeField and Description
pack-priv final Scheduler
Inherited from io.reactivex.rxjava3.internal.operators.maybe.AbstractMaybeWithUpstream:
source

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
protected void
subscribeActual(MaybeObserver<? super T> observer)

Inherited from io.reactivex.rxjava3.internal.operators.maybe.AbstractMaybeWithUpstream:
source

Field Detail

schedulerback to summary
pack-priv final Scheduler scheduler

Constructor Detail

MaybeUnsubscribeOnback to summary
public MaybeUnsubscribeOn(MaybeSource<T> source, Scheduler scheduler)

Method Detail

subscribeActualback to summary
protected void subscribeActual(MaybeObserver<? super T> observer)
Annotations
@Override
io.reactivex.rxjava3.internal.operators.maybe back to summary

pack-priv final Class MaybeUnsubscribeOn.UnsubscribeOnMaybeObserver<T>

extends AtomicReference<Disposable>
implements MaybeObserver<T>, Disposable, Runnable
Class Inheritance
All Implemented Interfaces
java.lang.Runnable, io.reactivex.rxjava3.disposables.Disposable, io.reactivex.rxjava3.core.MaybeObserver

Field Summary

Modifier and TypeField and Description
pack-priv final MaybeObserver<? super T>
pack-priv Disposable
pack-priv final Scheduler
private static final long

Constructor Summary

AccessConstructor and Description
pack-priv
UnsubscribeOnMaybeObserver(MaybeObserver<? super T> actual, Scheduler scheduler)

Method Summary

Modifier and TypeMethod and Description
public void
dispose()

Implements io.reactivex.rxjava3.disposables.Disposable.dispose.

Dispose the resource, the operation should be idempotent.
public boolean
isDisposed()

Implements io.reactivex.rxjava3.disposables.Disposable.isDisposed.

Returns true if this resource has been disposed.
public void
onComplete()

Implements io.reactivex.rxjava3.core.MaybeObserver.onComplete.

Called once the deferred computation completes normally.
public void
public void
public void
onSuccess(T
the item emitted by the Maybe
value
)

Implements io.reactivex.rxjava3.core.MaybeObserver.onSuccess.

Notifies the MaybeObserver with one item and that the Maybe has finished sending push-based notifications.
public void
run()

Implements java.lang.Runnable.run.

Runs this operation.
Inherited from java.util.concurrent.atomic.AtomicReference:
accumulateAndGetcompareAndExchangecompareAndExchangeAcquirecompareAndExchangeReleasecompareAndSetgetgetAcquiregetAndAccumulategetAndSetgetAndUpdategetOpaquegetPlainlazySetsetsetOpaquesetPlainsetReleasetoStringupdateAndGetweakCompareAndSetweakCompareAndSetAcquireweakCompareAndSetPlainweakCompareAndSetReleaseweakCompareAndSetVolatile

Field Detail

downstreamback to summary
pack-priv final MaybeObserver<? super T> downstream
dsback to summary
pack-priv Disposable ds
schedulerback to summary
pack-priv final Scheduler scheduler
serialVersionUIDback to summary
private static final long serialVersionUID

Hides java.util.concurrent.atomic.AtomicReference.serialVersionUID.

Constructor Detail

UnsubscribeOnMaybeObserverback to summary
pack-priv UnsubscribeOnMaybeObserver(MaybeObserver<? super T> actual, Scheduler scheduler)

Method Detail

disposeback to summary
public void dispose()

Implements io.reactivex.rxjava3.disposables.Disposable.dispose.

Doc from io.reactivex.rxjava3.disposables.Disposable.dispose.

Dispose the resource, the operation should be idempotent.

Annotations
@Override
isDisposedback to summary
public boolean isDisposed()

Implements io.reactivex.rxjava3.disposables.Disposable.isDisposed.

Doc from io.reactivex.rxjava3.disposables.Disposable.isDisposed.

Returns true if this resource has been disposed.

Returns:boolean

true if this resource has been disposed

Annotations
@Override
onCompleteback to summary
public void onComplete()

Implements io.reactivex.rxjava3.core.MaybeObserver.onComplete.

Doc from io.reactivex.rxjava3.core.MaybeObserver.onComplete.

Called once the deferred computation completes normally.

Annotations
@Override
onErrorback to summary
public void onError(Throwable e)
Annotations
@Override
onSubscribeback to summary
public void onSubscribe(Disposable d)
Annotations
@Override
onSuccessback to summary
public void onSuccess(T value)

Implements io.reactivex.rxjava3.core.MaybeObserver.onSuccess.

Doc from io.reactivex.rxjava3.core.MaybeObserver.onSuccess.

Notifies the MaybeObserver with one item and that the Maybe has finished sending push-based notifications.

The Maybe will not call this method if it calls onError.

Parameters
value:T

the item emitted by the Maybe

Annotations
@Override
runback to summary
public void run()

Implements java.lang.Runnable.run.

Doc from java.lang.Runnable.run.

Runs this operation.

Annotations
@Override