public final class BlockingOperatorNext extends Object

| Modifier and Type | Method and Description |
|---|---|
static <T> Iterable |
next(Observable
Returns an
Iterable that blocks until the
Observable emits another item, then returns that item.
|
public static <T> Iterable<T> next(Observable <? extends T> items)
Iterable that blocks until the
Observable emits another item, then returns that item.
items - the
Observable to observe
Iterable that behaves like a blocking version of
items