Scenario:
I am building a UI application that gets notifcations from a backend service every few milliseconds. Once I get a new notification i want to u
Don't use Observable.Throttle, use Observable.Sample like this, where the TimeSpan gives the desired minimum interval between updates:
Observable.Throttle
Observable.Sample
source.Sample(TimeSpan.FromMilliseconds(50))