|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectrx.observers.SynchronizedObserver<T>
T
-
@Deprecated public final class SynchronizedObserver<T>
Synchronize execution to be single-threaded.
This ONLY does synchronization. It does not involve itself in safety or subscriptions. See SafeSubscriber for that.
Constructor Summary | |
---|---|
SynchronizedObserver(Observer<? super T> subscriber)
Deprecated. |
|
SynchronizedObserver(Observer<? super T> subscriber,
java.lang.Object lock)
Deprecated. |
Method Summary | |
---|---|
void |
onCompleted()
Deprecated. Notifies the Observer that the Observable has finished sending push-based notifications. |
void |
onError(java.lang.Throwable e)
Deprecated. Notifies the Observer that the Observable has experienced an error condition. |
void |
onNext(T arg)
Deprecated. Provides the Observer with new data. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SynchronizedObserver(Observer<? super T> subscriber)
public SynchronizedObserver(Observer<? super T> subscriber, java.lang.Object lock)
Method Detail |
---|
public void onNext(T arg)
Observer
The Observable
calls this closure 1 or more times, unless it calls onError
in which
case this closure may never be called.
The Observable
will not call this closure again after it calls either onCompleted
or
onError
.
onNext
in interface Observer<T>
public void onError(java.lang.Throwable e)
Observer
Observable
has experienced an error condition.
If the Observable
calls this closure, it will not thereafter call onNext
or
onCompleted
.
onError
in interface Observer<T>
public void onCompleted()
Observer
Observable
has finished sending push-based notifications.
The Observable
will not call this closure if it calls onError
.
onCompleted
in interface Observer<T>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |