I am looking an operator to debounce
a series of event, let us say user\'s click. The input and output should be like this:
interval : ->
The behavior you want is not what debounce
operator does in Rx.
This is called throttle
, throttleTime
or throttleWithTimeout
(however, it falls under debounce
category of operators). I don't know what language you use but in RxJS it looks like the following image:
See http://reactivex.io/documentation/operators/debounce.html.