I'm using RxJS 5 (beta10) in a project. Most of my events originate from a mouse or touch drag, and I would only ever need to hear the last one.
i.e. How do I do a lossy stream in RxJS5?
Running the demos in certain tablets clearly show a "drag" that happens when the update of the graphics takes longer than the event ignition from the browser (which is not continuous, even itself - browsers seem to optimize on the interval they actually tell things changed).
With a lossy data stream I'd be able to make the user experience always keep up with the finger.
Edit:
This answer seems to sum up the current state of RxJS5 backpressure pretty well.