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?