Interface ILoopTicker
public interface ILoopTicker : IDisposable
- Inherited Members
Properties
InitialDelay
Delay before the first invocation.
TimeSpan InitialDelay { get; }
Property Value
PeriodicDelay
Delay between each subsequent invocation.
TimeSpan PeriodicDelay { get; }
Property Value
State
Generic state that can be used to store information.
object? State { get; }
Property Value
Events
OnTick
Invoked every PeriodicDelay seconds.
event TickerCallback<ILoopTicker> OnTick