| Package | Description |
|---|---|
| io.smallrye.mutiny | |
| io.smallrye.mutiny.groups | |
| io.smallrye.mutiny.operators |
| Modifier and Type | Method and Description |
|---|---|
UniOnFailure<T> |
Uni.onFailure()
Like
Uni.onFailure(Predicate) but applied to all failures fired by the upstream uni. |
UniOnFailure<T> |
Uni.onFailure(Class<? extends Throwable> typeOfFailure)
Configures a type of failure filtering the failures on which the behavior (specified with the returned
UniOnFailure) is applied. |
UniOnFailure<T> |
Uni.onFailure(Predicate<? super Throwable> predicate)
Configures a predicate filtering the failures on which the behavior (specified with the returned
UniOnFailure) is applied. |
| Modifier and Type | Method and Description |
|---|---|
UniOnFailure<T> |
UniOnEvent.failure()
Like
UniOnEvent.failure(Predicate) but applied to all failures fired by the upstream uni. |
UniOnFailure<T> |
UniOnEvent.failure(Class<? extends Throwable> typeOfFailure)
Configures a type of failure filtering the failures on which the behavior (specified with the returned
UniOnFailure) is applied. |
UniOnFailure<T> |
UniOnEvent.failure(Predicate<? super Throwable> predicate)
Configures a predicate filtering the failures on which the behavior (specified with the returned
UniOnFailure) is applied. |
| Modifier and Type | Method and Description |
|---|---|
UniOnFailure<T> |
AbstractUni.onFailure() |
UniOnFailure<T> |
AbstractUni.onFailure(Class<? extends Throwable> typeOfFailure) |
UniOnFailure<T> |
AbstractUni.onFailure(Predicate<? super Throwable> predicate) |
Copyright © 2019–2020 SmallRye. All rights reserved.