Represents the result of an asynchronous operation.
Namespace: SharpKit.Rx
Constructors
|
AsyncSubject(Scheduler)
|
Creates a subject that can only receive one value and that value is cached for all future observations.
|
|
AsyncSubject()
|
Creates a subject that can only receive one value and that value is cached for all future observations.
|
Methods
|
OnCompleted()
|
Notifies all subscribed observers of the end of the sequence.
|
|
OnError(object)
|
Notifies all subscribed observers with the exception.
|
|
OnNext(object)
|
Notifies all subscribed observers with the value.
|