Package rx.internal.operators
Class OperatorSkipLastTimed<T>
- java.lang.Object
-
- rx.internal.operators.OperatorSkipLastTimed<T>
-
- Type Parameters:
T
- the value type
- All Implemented Interfaces:
Func1<Subscriber<? super T>,Subscriber<? super T>>
,Function
,Observable.Operator<T,T>
public class OperatorSkipLastTimed<T> extends java.lang.Object implements Observable.Operator<T,T>
Skip delivering values in the time window before the values.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) Scheduler
scheduler
(package private) long
timeInMillis
-
Constructor Summary
Constructors Constructor Description OperatorSkipLastTimed(long time, java.util.concurrent.TimeUnit unit, Scheduler scheduler)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super T>
call(Subscriber<? super T> subscriber)
-
-
-
Field Detail
-
timeInMillis
final long timeInMillis
-
scheduler
final Scheduler scheduler
-
-
Constructor Detail
-
OperatorSkipLastTimed
public OperatorSkipLastTimed(long time, java.util.concurrent.TimeUnit unit, Scheduler scheduler)
-
-
Method Detail
-
call
public Subscriber<? super T> call(Subscriber<? super T> subscriber)
- Specified by:
call
in interfaceFunc1<Subscriber<? super T>,Subscriber<? super T>>
-
-