Constructor and Description |
---|
EmptyObserver() |
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 args)
Provides the Observer with a new item to observe.
|
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)
.
onCompleted
in interface Observer<T>
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()
.
public void onNext(T args)
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)
.