0

In rx-java 2.x there is an operator named throttleLatest that conflates incoming events based on a given time:

https://github.com/ReactiveX/RxJava/pull/5979

Is there a similar operator in Reactor 3? Or is it possible to get the same behaviour from combining other operators?

pwnts
  • 1
  • 1

1 Answers1

1

No, currently as of reactor-core 3.2.0/3.1.9 there is no such operator.

Simon Baslé
  • 27,105
  • 5
  • 69
  • 70