Targeting System 2.0.0
Plugin for multipurpose targeting and visual effects.
|
Public Member Functions | |
ReplaySubject (IScheduler scheduler) | |
ReplaySubject (int bufferSize) | |
ReplaySubject (int bufferSize, IScheduler scheduler) | |
ReplaySubject (TimeSpan window) | |
ReplaySubject (TimeSpan window, IScheduler scheduler) | |
ReplaySubject (int bufferSize, TimeSpan window, IScheduler scheduler) | |
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) |
IDisposable | Subscribe (IObserver< T > observer) |
void | Dispose () |
bool | IsRequiredSubscribeOnCurrentThread () |
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) |
IDisposable | Subscribe (IObserver< T > observer) |
Public Member Functions inherited from UniRx.IObserver< TSource > | |
TResult | OnNext (TValue value) |
Notifies the observer of a new element in the sequence. More... | |
void | OnNext (T value) |
TResult | OnError (Exception exception) |
Notifies the observer that an exception has occurred. More... | |
void | OnError (Exception error) |
TResult | OnCompleted () |
Notifies the observer of the end of the sequence. More... | |
void | OnCompleted () |
Public Member Functions inherited from UniRx.IObservable< TResult > | |
IDisposable | Subscribe (IObserver< T > observer) |
bool | IsRequiredSubscribeOnCurrentThread () |
bool UniRx.ReplaySubject< T >.IsRequiredSubscribeOnCurrentThread | ( | ) |
Implements UniRx.IOptimizedObservable< T >.
void UniRx.ReplaySubject< T >.OnCompleted | ( | ) |
Notifies the observer of the end of the sequence.
Implements UniRx.IObserver< T >.
void UniRx.ReplaySubject< T >.OnError | ( | Exception | exception | ) |
Notifies the observer that an exception has occurred.
exception | The exception that occurred. |
Implements UniRx.IObserver< T >.
void UniRx.ReplaySubject< T >.OnNext | ( | T | value | ) |
Implements UniRx.IObserver< T >.
IDisposable UniRx.ReplaySubject< T >.Subscribe | ( | IObserver< T > | observer | ) |
Implements UniRx.IObservable< T >.