“Buffer until quiet” behavior from Reactive?
问题 My problem is sort of like the one the Nagle algorithm was created to solve, but not exactly. What I'd like is to buffer the OnNext notifications from an IObservable<T> into a sequence of IObservable<IList<T>> s like so: When the first T notification arrives, add it to a buffer and start a countdown If another T notification arrives before the countdown expires, add it to the buffer and restart the countdown Once the countdown expires (i.e. the producer has been silent for some length of time