Package rx.internal.operators
Class OperatorAll<T>
- java.lang.Object
-
- rx.internal.operators.OperatorAll<T>
-
- Type Parameters:
T
- the value type
- All Implemented Interfaces:
Func1<Subscriber<? super java.lang.Boolean>,Subscriber<? super T>>
,Function
,Observable.Operator<java.lang.Boolean,T>
public final class OperatorAll<T> extends java.lang.Object implements Observable.Operator<java.lang.Boolean,T>
Returns an Observable that emits a Boolean that indicates whether all items emitted by an Observable satisfy a condition.
-
-
Constructor Summary
Constructors Constructor Description OperatorAll(Func1<? super T,java.lang.Boolean> predicate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Subscriber<? super T>
call(Subscriber<? super java.lang.Boolean> child)
-
-
-
Method Detail
-
call
public Subscriber<? super T> call(Subscriber<? super java.lang.Boolean> child)
- Specified by:
call
in interfaceFunc1<Subscriber<? super java.lang.Boolean>,Subscriber<? super T>>
-
-