ObserverBase<T>
Abstract base class for implementations of the IObserver<T> interface.
protected ObserverBase()
Creates a new observer in a non-stopped state.
Disposes the observer, causing it to transition to the stopped state.
Core implementation of IDisposable.
Notifies the observer of the end of the sequence.
Implement this method to react to the end of the sequence.
Notifies the observer that an exception has occurred.
Implement this method to react to the occurrence of an exception.
Notifies the observer of a new element in the sequence.
Implement this method to react to the receival of a new element in the sequence.