标签: c# .net system.reactive
我需要系统发送一封电子邮件,总结一段时间不活动后发生的事情。我怎么能用RX做到这一点?
答案 0 :(得分:1)
试试这个:
IObservable<IList<T>> query = source.Publish(hot => hot.Buffer(() => hot.Throttle(TimeSpan.FromSeconds(1.0))));