T
- the type of items expected to be emitted to the Subscriber
public class SerializedSubscriber<T> extends Subscriber<T>
onNext(T)
, onCompleted()
, and
onError(java.lang.Throwable)
.
When multiple threads are emitting and/or notifying they will be serialized by:
Constructor and Description |
---|
SerializedSubscriber(Subscriber<? super T> s) |
Modifier and Type | Method and Description |
---|---|
void |
onCompleted()
Notifies the Observer that the
Observable has finished sending push-based notifications. |
void |
onError(java.lang.Throwable e)
Notifies the Observer that the
Observable has experienced an error condition. |
void |
onNext(T t)
Provides the Observer with a new item to observe.
|
add, isUnsubscribed, onStart, request, setProducer, unsubscribe
public SerializedSubscriber(Subscriber<? super T> s)
public void onCompleted()
Observer
Observable
has finished sending push-based notifications.
The Observable
will not call this method if it calls Observer.onError(java.lang.Throwable)
.
public void onError(java.lang.Throwable e)
Observer
Observable
has experienced an error condition.
If the Observable
calls this method, it will not thereafter call Observer.onNext(T)
or
Observer.onCompleted()
.
e
- the exception encountered by the Observablepublic void onNext(T t)
Observer
The Observable
may call this closure 0 or more times.
The Observable
will not call this closure again after it calls either Observer.onCompleted()
or
Observer.onError(java.lang.Throwable)
.
t
- the item emitted by the Observable