RxJava



rx.operators
Class OperationAll

java.lang.Object
  extended by rx.operators.OperationAll

public class OperationAll
extends java.lang.Object

Returns an Observable that emits a Boolean that indicates whether all items emitted by an Observable satisfy a condition.


Constructor Summary
OperationAll()
           
 
Method Summary
static
<T> Observable.OnSubscribeFunc<java.lang.Boolean>
all(Observable<? extends T> sequence, Func1<? super T,java.lang.Boolean> predicate)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperationAll

public OperationAll()
Method Detail

all

public static <T> Observable.OnSubscribeFunc<java.lang.Boolean> all(Observable<? extends T> sequence,
                                                                    Func1<? super T,java.lang.Boolean> predicate)