| Package | Description |
|---|---|
| io.smallrye.mutiny.groups | |
| io.smallrye.mutiny.operators |
| Modifier and Type | Method and Description |
|---|---|
Uni<T> |
UniOnTerminate.invoke(Functions.TriConsumer<T,Throwable,Boolean> consumer)
Attaches an action that is executed when the
Uni emits an item or a failure or when the subscriber
cancels the subscription. |
<R> Uni<R> |
UniOnItemOrFailure.produceUni(Functions.TriConsumer<? super T,Throwable,UniEmitter<? super R>> consumer)
Deprecated.
|
Uni<T> |
UniOnEvent.termination(Functions.TriConsumer<T,Throwable,Boolean> consumer)
Deprecated.
Use
uni.onTermination().invoke(...) instead |
<R> Uni<R> |
UniOnItemOrFailure.transformToUni(Functions.TriConsumer<? super T,Throwable,UniEmitter<? super R>> consumer)
Transforms the received item or failure asynchronously, forwarding the events emitted by the
UniEmitter
provided to the given consumer. |
| Constructor and Description |
|---|
UniOnTermination(Uni<T> upstream,
Functions.TriConsumer<T,Throwable,Boolean> callback) |
Copyright © 2019–2020 SmallRye. All rights reserved.