ISchedulerPeriodic
using System.Runtime.CompilerServices;
namespace System.Reactive.Concurrency
{
[NullableContext(1)]
public interface ISchedulerPeriodic
{
IDisposable SchedulePeriodic<[Nullable(2)] TState>(TState state, TimeSpan period, Func<TState, TState> action);
}
}