System.Reactive.Concurrency.EventLoopScheduler
namespace System.Reactive.Concurrency
{
public sealed class EventLoopScheduler : LocalScheduler, ISchedulerPeriodic, IDisposable
{
public EventLoopScheduler();
public EventLoopScheduler(Func<ThreadStart, Thread> threadFactory);
public IDisposable SchedulePeriodic<[System.Runtime.CompilerServices.Nullable(2)] TState>(TState state, TimeSpan period, Func<TState, TState> action);
public void Dispose();
}
}