<PackageReference Include="System.Reactive" Version="6.0.0-preview.9" />

System.Reactive.Concurrency.ISchedulerPeriodic

public interface ISchedulerPeriodic
Scheduler with support for running periodic tasks. This type of scheduler can be used to run timers more efficiently instead of using recursive scheduling.
namespace System.Reactive.Concurrency { public interface ISchedulerPeriodic { IDisposable SchedulePeriodic<[System.Runtime.CompilerServices.Nullable(2)] TState>(TState state, TimeSpan period, Func<TState, TState> action); } }