Throttle method call as we throttle View clicks with RxJava

406 Views Asked by At

Is there a way to throttle method calls i.e only take the first event within a certain window duration. I have seen examples of RxBinding like

RxView.clicks(mButton)
            .throttleFirst(300, TimeUnit.MILLISECONDS, AndroidSchedulers.mainThread())
            .subscribe(...);

How can I do the above to a method ?

1

There are 1 best solutions below

0
On

In RxJava2 there is such operator - http://reactivex.io/documentation/operators/sample.html