Package rx.internal.operators
Class OnSubscribeOnAssemblyCompletable.OnAssemblyCompletableSubscriber
java.lang.Object
rx.internal.operators.OnSubscribeOnAssemblyCompletable.OnAssemblyCompletableSubscriber
- All Implemented Interfaces:
Completable.CompletableSubscriber
- Enclosing class:
OnSubscribeOnAssemblyCompletable<T>
static final class OnSubscribeOnAssemblyCompletable.OnAssemblyCompletableSubscriber
extends Object
implements Completable.CompletableSubscriber
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) final Completable.CompletableSubscriber
(package private) final String
-
Constructor Summary
ConstructorsConstructorDescriptionOnAssemblyCompletableSubscriber
(Completable.CompletableSubscriber actual, String stacktrace) -
Method Summary
Modifier and TypeMethodDescriptionvoid
Called once the deferred computation completes normally.void
Called once if the deferred computation 'throws' an exception.void
Called once by the Completable to set a Subscription on this instance which then can be used to cancel the subscription at any time.
-
Field Details
-
actual
-
stacktrace
-
-
Constructor Details
-
OnAssemblyCompletableSubscriber
-
-
Method Details
-
onSubscribe
Description copied from interface:Completable.CompletableSubscriber
Called once by the Completable to set a Subscription on this instance which then can be used to cancel the subscription at any time.- Specified by:
onSubscribe
in interfaceCompletable.CompletableSubscriber
- Parameters:
d
- the Subscription instance to call dispose on for cancellation, not null
-
onCompleted
public void onCompleted()Description copied from interface:Completable.CompletableSubscriber
Called once the deferred computation completes normally.- Specified by:
onCompleted
in interfaceCompletable.CompletableSubscriber
-
onError
Description copied from interface:Completable.CompletableSubscriber
Called once if the deferred computation 'throws' an exception.- Specified by:
onError
in interfaceCompletable.CompletableSubscriber
- Parameters:
e
- the exception, not null.
-