You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Do we really need both methods? If yes, could the documentation say explicitly that they are synonyms? Could these links to third-party websites be removed?
The text was updated successfully, but these errors were encountered:
Yes, it is an alias so it can be more easily discovered along the throttle methods. debounce is a traditional ReactiveX naming and we kept it for historical reasons.
You can update the javadocs (on both Flowable and Observable if you want. PR welcome.
The documentation for
Observable.throttleWithTimeout()
implies that it's different fromdebounce()
and invites to read about the differences:Of these links, the first one isn't available anymore and the last two are about JS.
Looking at the method's implementation, it becomes clear that in RxJava it's not different from
debounce
in any way:Do we really need both methods? If yes, could the documentation say explicitly that they are synonyms? Could these links to third-party websites be removed?
The text was updated successfully, but these errors were encountered: