CompletionAwaitable<Void> |
CompletionAwaitable.acceptEither(CompletionStage<? extends T> other,
Consumer<? super T> action) |
|
CompletionAwaitable<Void> |
Single.acceptEither(CompletionStage<? extends T> other,
Consumer<? super T> action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.acceptEitherAsync(CompletionStage<? extends T> other,
Consumer<? super T> action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.acceptEitherAsync(CompletionStage<? extends T> other,
Consumer<? super T> action,
Executor executor) |
|
CompletionAwaitable<Void> |
Single.acceptEitherAsync(CompletionStage<? extends T> other,
Consumer<? super T> action) |
|
CompletionAwaitable<Void> |
Single.acceptEitherAsync(CompletionStage<? extends T> other,
Consumer<? super T> action,
Executor executor) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.applyToEither(CompletionStage<? extends T> other,
Function<? super T,U> fn) |
|
<U> CompletionAwaitable<U> |
Single.applyToEither(CompletionStage<? extends T> other,
Function<? super T,U> fn) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.applyToEitherAsync(CompletionStage<? extends T> other,
Function<? super T,U> fn) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.applyToEitherAsync(CompletionStage<? extends T> other,
Function<? super T,U> fn,
Executor executor) |
|
<U> CompletionAwaitable<U> |
Single.applyToEitherAsync(CompletionStage<? extends T> other,
Function<? super T,U> fn) |
|
<U> CompletionAwaitable<U> |
Single.applyToEitherAsync(CompletionStage<? extends T> other,
Function<? super T,U> fn,
Executor executor) |
|
CompletionAwaitable<T> |
CompletionAwaitable.exceptionally(Function<Throwable,? extends T> fn) |
|
CompletionAwaitable<T> |
Single.exceptionally(Function<Throwable,? extends T> fn) |
|
CompletionAwaitable<T> |
CompletionAwaitable.exceptionallyAccept(Consumer<Throwable> consumer) |
Returns a new CompletionAwaitable that, when this stage completes
exceptionally, is executed with this stage's exception as the
argument to the supplied consumer.
|
CompletionAwaitable<T> |
Single.exceptionallyAccept(Consumer<Throwable> consumer) |
Returns a new CompletionAwaitable that, when this stage completes
exceptionally, is executed with this stage's exception as the
argument to the supplied consumer.
|
default CompletionAwaitable<Void> |
Single.forSingle(Consumer<T> consumer) |
Terminal stage, invokes provided consumer when Single is completed.
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.handle(BiFunction<? super T,Throwable,? extends U> fn) |
|
<U> CompletionAwaitable<U> |
Single.handle(BiFunction<? super T,Throwable,? extends U> fn) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.handleAsync(BiFunction<? super T,Throwable,? extends U> fn) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.handleAsync(BiFunction<? super T,Throwable,? extends U> fn,
Executor executor) |
|
<U> CompletionAwaitable<U> |
Single.handleAsync(BiFunction<? super T,Throwable,? extends U> fn) |
|
<U> CompletionAwaitable<U> |
Single.handleAsync(BiFunction<? super T,Throwable,? extends U> fn,
Executor executor) |
|
default CompletionAwaitable<Void> |
Single.ignoreElement() |
Terminal stage, ignore onNext signals, only onComplete and onError signals are propagated.
|
CompletionAwaitable<Void> |
CompletionAwaitable.runAfterBoth(CompletionStage<?> other,
Runnable action) |
|
CompletionAwaitable<Void> |
Single.runAfterBoth(CompletionStage<?> other,
Runnable action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.runAfterBothAsync(CompletionStage<?> other,
Runnable action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.runAfterBothAsync(CompletionStage<?> other,
Runnable action,
Executor executor) |
|
CompletionAwaitable<Void> |
Single.runAfterBothAsync(CompletionStage<?> other,
Runnable action) |
|
CompletionAwaitable<Void> |
Single.runAfterBothAsync(CompletionStage<?> other,
Runnable action,
Executor executor) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.runAfterEither(CompletionStage<?> other,
Runnable action) |
|
CompletionAwaitable<Void> |
Single.runAfterEither(CompletionStage<?> other,
Runnable action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.runAfterEitherAsync(CompletionStage<?> other,
Runnable action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.runAfterEitherAsync(CompletionStage<?> other,
Runnable action,
Executor executor) |
|
CompletionAwaitable<Void> |
Single.runAfterEitherAsync(CompletionStage<?> other,
Runnable action) |
|
CompletionAwaitable<Void> |
Single.runAfterEitherAsync(CompletionStage<?> other,
Runnable action,
Executor executor) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.thenAccept(Consumer<? super T> action) |
|
CompletionAwaitable<Void> |
Single.thenAccept(Consumer<? super T> action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.thenAcceptAsync(Consumer<? super T> action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.thenAcceptAsync(Consumer<? super T> action,
Executor executor) |
|
CompletionAwaitable<Void> |
Single.thenAcceptAsync(Consumer<? super T> action) |
|
CompletionAwaitable<Void> |
Single.thenAcceptAsync(Consumer<? super T> action,
Executor executor) |
|
<U> CompletionAwaitable<Void> |
CompletionAwaitable.thenAcceptBoth(CompletionStage<? extends U> other,
BiConsumer<? super T,? super U> action) |
|
<U> CompletionAwaitable<Void> |
Single.thenAcceptBoth(CompletionStage<? extends U> other,
BiConsumer<? super T,? super U> action) |
|
<U> CompletionAwaitable<Void> |
CompletionAwaitable.thenAcceptBothAsync(CompletionStage<? extends U> other,
BiConsumer<? super T,? super U> action) |
|
<U> CompletionAwaitable<Void> |
CompletionAwaitable.thenAcceptBothAsync(CompletionStage<? extends U> other,
BiConsumer<? super T,? super U> action,
Executor executor) |
|
<U> CompletionAwaitable<Void> |
Single.thenAcceptBothAsync(CompletionStage<? extends U> other,
BiConsumer<? super T,? super U> action) |
|
<U> CompletionAwaitable<Void> |
Single.thenAcceptBothAsync(CompletionStage<? extends U> other,
BiConsumer<? super T,? super U> action,
Executor executor) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.thenApply(Function<? super T,? extends U> fn) |
|
<U> CompletionAwaitable<U> |
Single.thenApply(Function<? super T,? extends U> fn) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.thenApplyAsync(Function<? super T,? extends U> fn) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.thenApplyAsync(Function<? super T,? extends U> fn,
Executor executor) |
|
<U> CompletionAwaitable<U> |
Single.thenApplyAsync(Function<? super T,? extends U> fn) |
|
<U> CompletionAwaitable<U> |
Single.thenApplyAsync(Function<? super T,? extends U> fn,
Executor executor) |
|
<U,V> CompletionAwaitable<V> |
CompletionAwaitable.thenCombine(CompletionStage<? extends U> other,
BiFunction<? super T,? super U,? extends V> fn) |
|
<U,V> CompletionAwaitable<V> |
Single.thenCombine(CompletionStage<? extends U> other,
BiFunction<? super T,? super U,? extends V> fn) |
|
<U,V> CompletionAwaitable<V> |
CompletionAwaitable.thenCombineAsync(CompletionStage<? extends U> other,
BiFunction<? super T,? super U,? extends V> fn) |
|
<U,V> CompletionAwaitable<V> |
CompletionAwaitable.thenCombineAsync(CompletionStage<? extends U> other,
BiFunction<? super T,? super U,? extends V> fn,
Executor executor) |
|
<U,V> CompletionAwaitable<V> |
Single.thenCombineAsync(CompletionStage<? extends U> other,
BiFunction<? super T,? super U,? extends V> fn) |
|
<U,V> CompletionAwaitable<V> |
Single.thenCombineAsync(CompletionStage<? extends U> other,
BiFunction<? super T,? super U,? extends V> fn,
Executor executor) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.thenCompose(Function<? super T,? extends CompletionStage<U>> fn) |
|
<U> CompletionAwaitable<U> |
Single.thenCompose(Function<? super T,? extends CompletionStage<U>> fn) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.thenComposeAsync(Function<? super T,? extends CompletionStage<U>> fn) |
|
<U> CompletionAwaitable<U> |
CompletionAwaitable.thenComposeAsync(Function<? super T,? extends CompletionStage<U>> fn,
Executor executor) |
|
<U> CompletionAwaitable<U> |
Single.thenComposeAsync(Function<? super T,? extends CompletionStage<U>> fn) |
|
<U> CompletionAwaitable<U> |
Single.thenComposeAsync(Function<? super T,? extends CompletionStage<U>> fn,
Executor executor) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.thenRun(Runnable action) |
|
CompletionAwaitable<Void> |
Single.thenRun(Runnable action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.thenRunAsync(Runnable action) |
|
CompletionAwaitable<Void> |
CompletionAwaitable.thenRunAsync(Runnable action,
Executor executor) |
|
CompletionAwaitable<Void> |
Single.thenRunAsync(Runnable action) |
|
CompletionAwaitable<Void> |
Single.thenRunAsync(Runnable action,
Executor executor) |
|
CompletionAwaitable<T> |
CompletionAwaitable.whenComplete(BiConsumer<? super T,? super Throwable> action) |
|
CompletionAwaitable<T> |
Single.whenComplete(BiConsumer<? super T,? super Throwable> action) |
|
CompletionAwaitable<T> |
CompletionAwaitable.whenCompleteAsync(BiConsumer<? super T,? super Throwable> action) |
|
CompletionAwaitable<T> |
CompletionAwaitable.whenCompleteAsync(BiConsumer<? super T,? super Throwable> action,
Executor executor) |
|
CompletionAwaitable<T> |
Single.whenCompleteAsync(BiConsumer<? super T,? super Throwable> action) |
|
CompletionAwaitable<T> |
Single.whenCompleteAsync(BiConsumer<? super T,? super Throwable> action,
Executor executor) |
|