- Type Parameters:
T
- the value type
- All Implemented Interfaces:
- Func1<Subscriber<? super T>,Subscriber<? super T>>, Function, Observable.Operator<T,T>
public final class OperatorDebounceWithTime<T>
extends java.lang.Object
implements Observable.Operator<T,T>
This operation filters out events which are published too quickly in succession. This is done by dropping events which are
followed up by other events before a specified timer has expired. If the timer expires and no follow up event was published (yet)
the last received event is published.