Interface ILoopTicker<TState>
public interface ILoopTicker<out TState> : ILoopTicker, IDisposable
Type Parameters
TState
- Inherited Members
Properties
State
Generic state that can be used to store information.
TState? State { get; }
Property Value
- TState
Events
OnTick
Invoked every Delay seconds.
event TickerCallback<ILoopTicker<out TState>> OnTick
Event Type
- TickerCallback<ILoopTicker<TState>>