Notifications are used to record which events have happend. They are most useful for testing where one wants to schedule some notifications at a specific time and test if the operator reacted as expected.
Represents a notification to an observer.
Creates an OnNextNotification that yields value.
Creates an OnErrorNotification that yields exception.
Creates an OnCompletedNotification.
Accepts an observer or the methods onNext, onError, onCompleted and invokes either onNext, onError, onCompleted depending on which type of Notification it is. This is an abstract method that is implemented by OnNextNotification, OnErrorNotification, and OnCompletedNotification.
Represents an OnNextNotification notification to an observer.
Represents an OnNextNotification notification to an observer.
Represents an OnNextNotification notification to an observer.