Class OperatorDebounceWithSelector<T,U>

  • Type Parameters:
    T - the value type of the main sequence
    U - the value type of the boundary sequence
    All Implemented Interfaces:
    Func1<Subscriber<? super T>,Subscriber<? super T>>, Function, Observable.Operator<T,T>


    public final class OperatorDebounceWithSelector<T,U>
    extends Object
    implements Observable.Operator<T,T>
    Delay the emission via another observable if no new source appears in the meantime.
    • Constructor Detail

      • OperatorDebounceWithSelector

        public OperatorDebounceWithSelector(Func1<? super T,? extends Observable<U>> selector)