Class ReactiveTimer
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
ITimestampProviderTimestamp provider used for time tracking.
interval
DurationInterval between subsequent timer events.
spinWaitDurationHint
DurationSpinWait duration hint for this timer.
count
longNumber of events this timer will emit in total. Equal to MaxValue by default.
Exceptions
- ArgumentOutOfRangeException
When
count
is less than 1 or wheninterval
is less than 1 tick or greater than MaxValue milliseconds or whenspinWaitDurationHint
is less than 0.
ReactiveTimer(ITimestampProvider, Duration, long)
Creates a new ReactiveTimer instance.
public ReactiveTimer(ITimestampProvider timestampProvider, Duration interval, long count = 9223372036854775807)
Parameters
timestampProvider
ITimestampProviderTimestamp provider used for time tracking.
interval
DurationInterval between subsequent timer events.
count
longNumber of events this timer will emit in total. Equal to MaxValue by default.
Exceptions
- ArgumentOutOfRangeException
When
count
is less than 1 or wheninterval
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
Properties
Count
Number of events this timer will emit in total.
public long Count { get; }
Property Value
Interval
Interval between subsequent timer events.
public Duration Interval { get; }
Property Value
State
Specifies the current state of this timer.
public ReactiveTimerState State { get; }
Property Value
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
DurationTime 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
DurationTime 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
TaskSchedulerTask 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
TaskSchedulerTask scheduler.
delay
DurationTime 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.