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