Observer
Interface representing an Observer of items emitted by an Observable.
Implementors need to handle both onNext for each emitted value and onComplete when the upstream source has terminated. No further onNext emissions should be delivered after the onComplete has been propagated downstream.
Any Disposable subscriptions held to upstream Observables should be disposed of after onComplete has been emitted downstream.
Inheritors
Functions
Link copied to clipboard
Called when the upstream source has terminated and no further onNext calls will be made.
Link copied to clipboard
Called whenever there has been a new item emitted by the upstream Observable.