Targeting System 2.0.0
Plugin for multipurpose targeting and visual effects.
|
Public Member Functions | |
ListObserver (ImmutableList< IObserver< T > > observers) | |
void | OnCompleted () |
Notifies the observer of the end of the sequence. More... | |
void | OnError (Exception error) |
Notifies the observer that an exception has occurred. More... | |
void | OnNext (T value) |
Public Member Functions inherited from UniRx.IObserver< T > | |
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) |
void UniRx.InternalUtil.ListObserver< T >.OnCompleted | ( | ) |
Notifies the observer of the end of the sequence.
Implements UniRx.IObserver< T >.
void UniRx.InternalUtil.ListObserver< T >.OnError | ( | Exception | exception | ) |
Notifies the observer that an exception has occurred.
exception | The exception that occurred. |
Implements UniRx.IObserver< T >.
void UniRx.InternalUtil.ListObserver< T >.OnNext | ( | T | value | ) |
Implements UniRx.IObserver< T >.