Table of Contents

Class ReactiveTimer

Namespace
LfrlAnvil.Reactive.Chrono
Assembly
LfrlAnvil.Reactive.Chrono.dll

Represents a disposable timer that can be listened to.

public sealed class ReactiveTimer : ConcurrentEventSource<WithInterval<long>, EventPublisher<WithInterval<long>>>, IEventSource<WithInterval<long>>, IEventStream<WithInterval<long>>, IEventSource, IEventStream, IDisposable
Inheritance
ReactiveTimer
Implements
Inherited Members
Extension Methods

Constructors

ReactiveTimer(ITimestampProvider, Duration, Duration, long)

Creates a new ReactiveTimer instance.

public ReactiveTimer(ITimestampProvider timestampProvider, Duration interval, Duration spinWaitDurationHint, long count = 9223372036854775807)

Parameters

timestampProvider ITimestampProvider

Timestamp provider used for time tracking.

interval Duration

Interval between subsequent timer events.

spinWaitDurationHint Duration

SpinWait duration hint for this timer.

count long

Number of events this timer will emit in total. Equal to MaxValue by default.

Exceptions

ArgumentOutOfRangeException

When count is less than 1 or when interval is less than 1 tick or greater than MaxValue milliseconds or when spinWaitDurationHint is less than 0.

ReactiveTimer(ITimestampProvider, Duration, long)

Creates a new ReactiveTimer instance.

public ReactiveTimer(ITimestampProvider timestampProvider, Duration interval, long count = 9223372036854775807)

Parameters

timestampProvider ITimestampProvider

Timestamp provider used for time tracking.

interval Duration

Interval between subsequent timer events.

count long

Number of events this timer will emit in total. Equal to MaxValue by default.

Exceptions

ArgumentOutOfRangeException

When count is less than 1 or when interval is less than 1 tick or greater than MaxValue milliseconds.

Fields

DefaultSpinWaitDurationHint

Specifies the default SpinWait duration hint. Equal to 1 microsecond.

public static readonly Duration DefaultSpinWaitDurationHint

Field Value

Duration

Properties

Count

Number of events this timer will emit in total.

public long Count { get; }

Property Value

long

Interval

Interval between subsequent timer events.

public Duration Interval { get; }

Property Value

Duration

State

Specifies the current state of this timer.

public ReactiveTimerState State { get; }

Property Value

ReactiveTimerState

Methods

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

public override void Dispose()

Start()

Attempts to start this timer synchronously.

public bool Start()

Returns

bool

true when timer was started, otherwise false.

Start(Duration)

Attempts to start this timer synchronously with an initial delay.

public bool Start(Duration delay)

Parameters

delay Duration

Time that must elapse before emitting the first event.

Returns

bool

true when timer was started, otherwise false.

Exceptions

ArgumentOutOfRangeException

When delay is less than 1 tick or greater than MaxValue milliseconds.

StartAsync()

Attempts to start this timer asynchronously.

public Task StartAsync()

Returns

Task

New Task instance that completes when this timer is done or is stopped or CompletedTask when this timer has been disposed or cancelled Task when this timer is already running.

StartAsync(Duration)

Attempts to start this timer asynchronously with an initial delay.

public Task StartAsync(Duration delay)

Parameters

delay Duration

Time that must elapse before emitting the first event.

Returns

Task

New Task instance that completes when this timer is done or is stopped or CompletedTask when this timer has been disposed or cancelled Task when this timer is already running.

Exceptions

ArgumentOutOfRangeException

When delay is less than 1 tick or greater than MaxValue milliseconds.

StartAsync(TaskScheduler)

Attempts to start this timer asynchronously.

public Task StartAsync(TaskScheduler scheduler)

Parameters

scheduler TaskScheduler

Task scheduler.

Returns

Task

New Task instance that completes when this timer is done or is stopped or CompletedTask when this timer has been disposed or cancelled Task when this timer is already running.

StartAsync(TaskScheduler, Duration)

Attempts to start this timer asynchronously with an initial delay.

public Task StartAsync(TaskScheduler scheduler, Duration delay)

Parameters

scheduler TaskScheduler

Task scheduler.

delay Duration

Time that must elapse before emitting the first event.

Returns

Task

New Task instance that completes when this timer is done or is stopped or CompletedTask when this timer has been disposed or cancelled Task when this timer is already running.

Exceptions

ArgumentOutOfRangeException

When delay is less than 1 tick or greater than MaxValue milliseconds.

Stop()

Attempts to stop this timer.

public bool Stop()

Returns

bool

true when timer was marked for stopping, otherwise false.