IConcurrencyAbstractionLayer.StartPeriodicTimer(Action, TimeSpan) method¶
Defined in
Type: IConcurrencyAbstractionLayer
Namespace: System.Reactive.Concurrency
Assembly: System.Reactive.dll
Applies to
netstandard2.0
IDisposable StartPeriodicTimer(Action action, TimeSpan period)
Summary: Queues a method for periodic execution based on the specified period.
Parameters
| Name | Type | Description |
|---|---|---|
action | Action | Method to execute; should be safe for reentrancy. |
period | TimeSpan | Period for running the method periodically. |
Returns: IDisposable -- Disposable object that can be used to stop the timer.