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