Is there any way to force a Observable.Buffer to flush before the end of buffered time?
In the example:
mSubscription = mFluxObservable.Buffer(new TimeSpan(0, 0, 1, 30)).Subscribe(o => saver(o, iSessionId));
I want to flush the data before the 1:30 period has finished!
This worked for me:
var subject = new Subject<Unit>();
var closing = Observable
.Timer(new TimeSpan(0, 0, 1, 30))
.Select(x => Unit.Default);
var query =
mFluxObservable
.Buffer(() => Observable
.Amb(subject, closing)
.Take(1));
Now I only need to call subject.OnNext(Unit.Default)
to force the buffer to flush. A new buffer is started immediately after the flush.
...and basically the same principal using window:
var bufferPeriod = TimeSpan.FromSeconds(1.5);
var source = Observable.Interval(TimeSpan.FromMilliseconds(100)).Take(50);
//source.Buffer(bufferPeriod).Dump();
var bufferFlush = new Subject<long>();//Or Subject<Unit>
source.Window(
()=>Observable.Merge(Observable.Timer(bufferPeriod), bufferFlush))
.Select(window=>window.ToList())
.Dump();
//Simulate calling flush.
Observable.Interval(TimeSpan.FromMilliseconds(1350)).Take(2).Subscribe(bufferFlush);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With