| Package | Description |
|---|---|
| io.smallrye.mutiny.unchecked |
| Modifier and Type | Method and Description |
|---|---|
default UncheckedConsumer<T> |
UncheckedConsumer.andThen(UncheckedConsumer<? super T> after)
Returns a composed
UncheckedConsumer that performs, in sequence, this
operation followed by the after operation. |
static <T> UncheckedConsumer<T> |
UncheckedConsumer.from(Consumer<T> consumer)
Creates a new
UncheckedConsumer from an existing Consumer |
static <T> UncheckedConsumer<T> |
Unchecked.unchecked(Consumer<T> consumer)
Transforms the given consumer into a version that can throw exceptions.
|
| Modifier and Type | Method and Description |
|---|---|
default UncheckedConsumer<T> |
UncheckedConsumer.andThen(UncheckedConsumer<? super T> after)
Returns a composed
UncheckedConsumer that performs, in sequence, this
operation followed by the after operation. |
static <T> Consumer<T> |
Unchecked.consumer(UncheckedConsumer<T> consumer)
Transforms the given (unchecked) consumer into a regular consumer.
|
Copyright © 2019–2020 SmallRye. All rights reserved.