<PackageReference Include="System.Reactive" Version="6.0.1" />

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.
IDisposable SchedulePeriodic<TState>(TState state, TimeSpan period, Func<TState, TState> action)

Schedules a periodic piece of work.