- first() - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
-
Returns a CompletionStage that signals the first element of the Flowable
or a NoSuchElementException if the Flowable is empty.
- first() - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
-
Returns a CompletionStage that signals the first element of the Observable
or a NoSuchElementException if the Observable is empty.
- firstElement() - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
-
Block until the source Flowable emits its first item and return that as Optional.
- firstElement() - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
-
Block until the source Observable emits its first item and return that as Optional.
- flatMapStream(Function<? super T, ? extends Stream<R>>) - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
-
Map each value of the upstream into a Stream and flatten them into a single sequence.
- flatMapStream(Function<? super T, ? extends Stream<R>>) - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
-
Map each value of the upstream into a Stream and flatten them into a single sequence.
- FlowableInterop - Class in hu.akarnokd.rxjava2.interop
-
Utility methods, sources and operators supporting RxJava 2 and the Jdk 8 API
interoperation.
- fromFuture(CompletionStage<?>) - Static method in class hu.akarnokd.rxjava2.interop.CompletableInterop
-
Returns a Completable that terminates when the given CompletionStage terminates.
- fromFuture(CompletionStage<T>) - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
-
Create a Flowable that signals the terminal value or error of the given
CompletionStage.
- fromFuture(CompletionStage<T>) - Static method in class hu.akarnokd.rxjava2.interop.MaybeInterop
-
Returns a Maybe that emits the resulting value of the CompletionStage or
its error, treating null as empty source.
- fromFuture(CompletionStage<T>) - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
-
Create a Observable that signals the terminal value or error of the given
CompletionStage.
- fromFuture(CompletionStage<T>) - Static method in class hu.akarnokd.rxjava2.interop.SingleInterop
-
Returns a Single that emits the value of the CompletionStage, its error or
NoSuchElementException if it signals null.
- fromOptional(Optional<T>) - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
-
Returns a Flowable for the value (or lack of) in the given Optional.
- fromOptional(Optional<T>) - Static method in class hu.akarnokd.rxjava2.interop.MaybeInterop
-
Returns a Maybe that emits the value of the Optional or is
empty if the Optional is also empty.
- fromOptional(Optional<T>) - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
-
Returns a Observable for the value (or lack of) in the given Optional.
- fromStream(Stream<T>) - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
-
Wrap a Stream into a Flowable.
- fromStream(Stream<T>) - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
-
Wrap a Stream into a Observable.