|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectrx.Observable<R>
rx.subjects.Subject<T,T>
rx.subjects.AsyncSubject<T>
T - public class AsyncSubject<T>
Subject that publishes only the last event to each Observer that has subscribed when the
sequence completes.
Example usage:
/ observer will receive no onNext events because the subject.onCompleted() isn't called.
AsyncSubject<Object> subject = AsyncSubject.create();
subject.subscribe(observer);
subject.onNext("one");
subject.onNext("two");
subject.onNext("three");
// observer will receive "three" as the only onNext event.
AsyncSubject<Object> subject = AsyncSubject.create();
subject.subscribe(observer);
subject.onNext("one");
subject.onNext("two");
subject.onNext("three");
subject.onCompleted();
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class rx.Observable |
|---|
Observable.OnSubscribeFunc<T> |
| Constructor Summary | |
|---|---|
protected |
AsyncSubject(Observable.OnSubscribeFunc<T> onSubscribe,
rx.subjects.AsyncSubject.AsyncSubjectState<T> state)
|
| Method Summary | ||
|---|---|---|
static
|
create()
Create a new AsyncSubject |
|
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 v)
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 |
|---|
protected AsyncSubject(Observable.OnSubscribeFunc<T> onSubscribe,
rx.subjects.AsyncSubject.AsyncSubjectState<T> state)
| Method Detail |
|---|
public static <T> AsyncSubject<T> create()
public void onCompleted()
ObserverObservable has finished sending push-based notifications.
The Observable will not call this closure if it calls onError.
public void onError(java.lang.Throwable e)
ObserverObservable has experienced an error condition.
If the Observable calls this closure, it will not thereafter call onNext or onCompleted.
public void onNext(T v)
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.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||