EventLoopScheduler Class (System.Reactive.Concurrency) | Microsoft Docs
参考微软的官方文档。EventLoopScheduler可以实现定时调度任务。
public static IDisposable Schedule(this IScheduler scheduler, TimeSpan dueTime, Action action);
如果在action的最后再调用一次同样的Schedule,就可以实现循环了。
EventLoopScheduler Class (System.Reactive.Concurrency) | Microsoft Docs
参考微软的官方文档。EventLoopScheduler可以实现定时调度任务。
public static IDisposable Schedule(this IScheduler scheduler, TimeSpan dueTime, Action action);
如果在action的最后再调用一次同样的Schedule,就可以实现循环了。