Table of Contents

Class TimerFactory

Namespace
Cuemon.Threading
Assembly
Cuemon.Core.dll

Provides access to factory methods for creating and configuring System.Threading.Timer instances.

public static class TimerFactory
Inheritance
Object
TimerFactory

Methods

CreateNonCapturingTimer(TimerCallback, Object, TimeSpan, TimeSpan)

Initializes a new instance of the System.Threading.Timer class that suppress capturing the ExecutionContext.

public static Timer CreateNonCapturingTimer(TimerCallback callback, object state, TimeSpan dueTime, TimeSpan period)

Parameters

callback TimerCallback

A delegate representing a method to be executed.

state Object

An object containing information to be used by the callback method, or null.

dueTime TimeSpan

The amount of time to delay before the callback is invoked. Specify System.Threading.Timeout.InfiniteTimeSpan to prevent the timer from starting. Specify System.TimeSpan.Zero to start the timer immediately.

period TimeSpan

The time interval between invocations of callback. Specify System.Threading.Timeout.InfiniteTimeSpan to disable periodic signaling.

Returns

Timer

A new System.Threading.Timer instance that suppress capturing the ExecutionContext.

Remarks