Package rx.internal.operators
Class OperatorDebounceWithSelector<T,U>
- java.lang.Object
-
- rx.internal.operators.OperatorDebounceWithSelector<T,U>
-
- Type Parameters:
T
- the value type of the main sequenceU
- 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 java.lang.Object implements Observable.Operator<T,T>
Delay the emission via another observable if no new source appears in the meantime.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Func1<? super T,? extends Observable<U>>
selector
-
Constructor Summary
Constructors Constructor Description OperatorDebounceWithSelector(Func1<? super T,? extends Observable<U>> selector)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super T>
call(Subscriber<? super T> child)
-
-
-
Field Detail
-
selector
final Func1<? super T,? extends Observable<U>> selector
-
-
Constructor Detail
-
OperatorDebounceWithSelector
public OperatorDebounceWithSelector(Func1<? super T,? extends Observable<U>> selector)
-
-
Method Detail
-
call
public Subscriber<? super T> call(Subscriber<? super T> child)
-
-