Package rx.internal.operators
Class CompletableOnSubscribeConcat.CompletableConcatSubscriber.ConcatInnerSubscriber
java.lang.Object
rx.internal.operators.CompletableOnSubscribeConcat.CompletableConcatSubscriber.ConcatInnerSubscriber
- All Implemented Interfaces:
Completable.CompletableSubscriber
- Enclosing class:
CompletableOnSubscribeConcat.CompletableConcatSubscriber
final class CompletableOnSubscribeConcat.CompletableConcatSubscriber.ConcatInnerSubscriber
extends Object
implements Completable.CompletableSubscriber
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidCalled once the deferred computation completes normally.voidCalled once if the deferred computation 'throws' an exception.voidCalled once by the Completable to set a Subscription on this instance which then can be used to cancel the subscription at any time.
-
Constructor Details
-
ConcatInnerSubscriber
ConcatInnerSubscriber()
-
-
Method Details
-
onSubscribe
Description copied from interface:Completable.CompletableSubscriberCalled 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:
onSubscribein interfaceCompletable.CompletableSubscriber- Parameters:
d- the Subscription instance to call dispose on for cancellation, not null
-
onError
Description copied from interface:Completable.CompletableSubscriberCalled once if the deferred computation 'throws' an exception.- Specified by:
onErrorin interfaceCompletable.CompletableSubscriber- Parameters:
e- the exception, not null.
-
onCompleted
public void onCompleted()Description copied from interface:Completable.CompletableSubscriberCalled once the deferred computation completes normally.- Specified by:
onCompletedin interfaceCompletable.CompletableSubscriber
-