- first() - Method in class rx.quasar.BlockingObservable
-
Returns the first item emitted by a specified Observable, or
IllegalArgumentException if source contains no elements.
- first(Func1<? super T, Boolean>) - Method in class rx.quasar.BlockingObservable
-
Returns the first item emitted by a specified Observable that
matches a predicate, or IllegalArgumentException if no such
item is emitted.
- firstOrDefault(T) - Method in class rx.quasar.BlockingObservable
-
Returns the first item emitted by a specified Observable, or a
default value if no items are emitted.
- firstOrDefault(T, Func1<? super T, Boolean>) - Method in class rx.quasar.BlockingObservable
-
Returns the first item emitted by a specified Observable that
matches a predicate, or a default value if no such items are emitted.
- forEach(Action1<? super T>) - Method in class rx.quasar.BlockingObservable
-
Invoke a method on each item emitted by the Observable; block
until the Observable completes.
- from(Observable<? extends T>) - Static method in class rx.quasar.BlockingObservable
-
Convert an Observable into a BlockingObservable.
- from(ReceivePort<T>) - Static method in class rx.quasar.ChannelObservable
-
Converts an Iterable sequence into an Observable that emits each message received on the channel.
- from(ReceivePort<T>, Scheduler) - Static method in class rx.quasar.ChannelObservable
-
Converts an Iterable sequence into an Observable that operates on the specified
scheduler, emitting each message received on the channel.