Table of Contents

Interface ILoopTicker

Namespace
Uncreated.Warfare.Util.Timing
Assembly
Uncreated.Warfare.dll
public interface ILoopTicker : IDisposable
Inherited Members

Properties

InitialDelay

Delay before the first invocation.

TimeSpan InitialDelay { get; }

Property Value

TimeSpan

PeriodicDelay

Delay between each subsequent invocation.

TimeSpan PeriodicDelay { get; }

Property Value

TimeSpan

State

Generic state that can be used to store information.

object? State { get; }

Property Value

object

Events

OnTick

Invoked every PeriodicDelay seconds.

event TickerCallback<ILoopTicker> OnTick

Event Type

TickerCallback<ILoopTicker>