Package rx.internal.operators
Class OnSubscribeOnAssemblySingle.OnAssemblySingleSubscriber<T>
java.lang.Object
rx.SingleSubscriber<T>
rx.internal.operators.OnSubscribeOnAssemblySingle.OnAssemblySingleSubscriber<T>
- All Implemented Interfaces:
Subscription
- Enclosing class:
OnSubscribeOnAssemblySingle<T>
static final class OnSubscribeOnAssemblySingle.OnAssemblySingleSubscriber<T>
extends SingleSubscriber<T>
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) final SingleSubscriber<? super T> (package private) final String -
Constructor Summary
ConstructorsConstructorDescriptionOnAssemblySingleSubscriber(SingleSubscriber<? super T> actual, String stacktrace) -
Method Summary
Methods inherited from class rx.SingleSubscriber
add, isUnsubscribed, unsubscribe
-
Field Details
-
actual
-
stacktrace
-
-
Constructor Details
-
OnAssemblySingleSubscriber
-
-
Method Details
-
onError
Description copied from class:SingleSubscriberNotifies the SingleSubscriber that theSinglehas experienced an error condition.If the
Singlecalls this method, it will not thereafter callSingleSubscriber.onSuccess(T).- Specified by:
onErrorin classSingleSubscriber<T>- Parameters:
e- the exception encountered by the Single
-
onSuccess
Description copied from class:SingleSubscriberNotifies the SingleSubscriber with a single item and that theSinglehas finished sending push-based notifications.The
Singlewill not call this method if it callsSingleSubscriber.onError(java.lang.Throwable).- Specified by:
onSuccessin classSingleSubscriber<T>- Parameters:
t- the item emitted by the Single
-