Targeting System 2.0.0
Plugin for multipurpose targeting and visual effects.
|
Provides a mechanism for receiving push-based notifications and returning a response. More...
Public Member Functions | |
TResult | OnNext (TValue value) |
Notifies the observer of a new element in the sequence. More... | |
TResult | OnError (Exception exception) |
Notifies the observer that an exception has occurred. More... | |
TResult | OnCompleted () |
Notifies the observer of the end of the sequence. More... | |
void | OnCompleted () |
void | OnError (Exception error) |
void | OnNext (T value) |
Provides a mechanism for receiving push-based notifications and returning a response.
TValue | The type of the elements received by the observer. This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. |
TResult | The type of the result returned from the observer's notification handlers. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics. |
TResult UniRx.IObserver< T >.OnCompleted | ( | ) |
Notifies the observer of the end of the sequence.
Implemented in UniRx.InternalUtil.ListObserver< T >, UniRx.InternalUtil.EmptyObserver< T >, UniRx.InternalUtil.ThrowObserver< T >, UniRx.InternalUtil.DisposedObserver< T >, UniRx.AsyncSubject< T >, UniRx.BehaviorSubject< T >, UniRx.ReplaySubject< T >, and UniRx.Subject< T >.
void UniRx.IObserver< T >.OnCompleted | ( | ) |
void UniRx.IObserver< T >.OnError | ( | Exception | error | ) |
TResult UniRx.IObserver< T >.OnError | ( | Exception | exception | ) |
Notifies the observer that an exception has occurred.
exception | The exception that occurred. |
Implemented in UniRx.InternalUtil.ListObserver< T >, UniRx.InternalUtil.EmptyObserver< T >, UniRx.InternalUtil.ThrowObserver< T >, UniRx.InternalUtil.DisposedObserver< T >, UniRx.AsyncSubject< T >, UniRx.BehaviorSubject< T >, UniRx.ReplaySubject< T >, and UniRx.Subject< T >.
TResult UniRx.IObserver< T >.OnNext | ( | TValue | value | ) |
Notifies the observer of a new element in the sequence.
value | The new element in the sequence. |