ReactiveX / rxdart

The Reactive Extensions for Dart

Home Page:http://reactivex.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to use backpressure?

dylan-kwon opened this issue · comments

Are there backpressure operators like in Rx in other languages?

I want to implement a function like this:

  1. The user presses a button.
  2. Add data to PublishSubject.
  3. Even if other data is added while the added data is being processed, it is ignored.

I don't know how to this it.

Any good way?