- Type Parameters:
T
- generic type of stream emissions
- All Implemented Interfaces:
- rx.functions.Func1<rx.Subscriber<? super T>,rx.Subscriber<? super T>>, rx.functions.Function, rx.Observable.Operator<T,T>
public final class OperatorWindowMinMax<T>
extends Object
implements rx.Observable.Operator<T,T>
Uses a double-ended queue and collapses entries when they are redundant
(whenever a value is added to the queue all values at the end of the queue
that are greater or equal to that value are removed).