Skip navigation links
A C E F G H L M O S T 

A

await() - Static method in class hu.akarnokd.rxjava2.interop.CompletableInterop
Returns a CompletionStage that signals a null value or error if the Completable terminates.

C

collect(Collector<T, A, R>) - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
Collect the elements of the Flowable via the help of Collector and its callback functions.
collect(Collector<T, A, R>) - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
Collect the elements of the Observable via the help of Collector and its callback functions.
CompletableInterop - Class in hu.akarnokd.rxjava2.interop
Utility methods, sources and operators supporting RxJava 2 and the Jdk 8 API interoperation.

E

element() - Static method in class hu.akarnokd.rxjava2.interop.MaybeInterop
Block until the source Maybe completes and return its possible value as Optional.

F

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.

G

get() - Static method in class hu.akarnokd.rxjava2.interop.MaybeInterop
Returns a CompletionStage that signals the single value or terminal event of the given Maybe source.
get() - Static method in class hu.akarnokd.rxjava2.interop.SingleInterop
Returns a CompletionStage that signals the success value or error of the source Single.

H

hu.akarnokd.rxjava2.interop - package hu.akarnokd.rxjava2.interop
 

L

last() - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
Returns a CompletionStage that emits the last element of the Flowable or NoSuchElementException if the Flowable is empty.
last() - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
Returns a CompletionStage that emits the last element of the Observable or NoSuchElementException if the Observable is empty.
lastElement() - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
Block until the source Flowable completes and return its last value as Optional.
lastElement() - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
Block until the source Observable completes and return its last value as Optional.

M

mapOptional(Function<? super T, Optional<R>>) - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
Maps the upstream value into an optional and extracts its optional value to be emitted towards the downstream if present.
mapOptional(Function<? super T, Optional<R>>) - Static method in class hu.akarnokd.rxjava2.interop.MaybeInterop
Maps the upstream value into an optional and extracts its optional value to be emitted towards the downstream if present.
mapOptional(Function<? super T, Optional<R>>) - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
Maps the upstream value into an optional and extracts its optional value to be emitted towards the downstream if present.
MaybeInterop - Class in hu.akarnokd.rxjava2.interop
Utility methods, sources and operators supporting RxJava 2 and the Jdk 8 API interoperation.

O

ObservableInterop - Class in hu.akarnokd.rxjava2.interop
Utility methods, sources and operators supporting RxJava 2 and the Jdk 8 API interoperation.

S

single() - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
Returns a CompletionStage that signals the single element of the Flowable, IllegalArgumentException if the Flowable is longer than 1 element or a NoSuchElementException if the Flowable is empty.
single() - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
Returns a CompletionStage that signals the single element of the Observable, IllegalArgumentException if the Observable is longer than 1 element or a NoSuchElementException if the Observable is empty.
SingleInterop - Class in hu.akarnokd.rxjava2.interop
Utility methods, sources and operators supporting RxJava 2 and the Jdk 8 API interoperation.

T

toStream() - Static method in class hu.akarnokd.rxjava2.interop.CompletableInterop
Returns a blocking Stream that waits for the Completable's terminal event.
toStream() - Static method in class hu.akarnokd.rxjava2.interop.FlowableInterop
Returns a blocking Stream of the elements of the Flowable.
toStream() - Static method in class hu.akarnokd.rxjava2.interop.MaybeInterop
Returns a blocking Stream of a potentially zero or one value (or error) of the Maybe.
toStream() - Static method in class hu.akarnokd.rxjava2.interop.ObservableInterop
Returns a blocking Stream of the elements of the Observable.
toStream() - Static method in class hu.akarnokd.rxjava2.interop.SingleInterop
Returns a blocking Stream of the single success value of the source Single.
A C E F G H L M O S T 
Skip navigation links