Uses of Interface
io.smallrye.mutiny.unchecked.UncheckedBiConsumer
Packages that use UncheckedBiConsumer
-
Uses of UncheckedBiConsumer in io.smallrye.mutiny.unchecked
Methods in io.smallrye.mutiny.unchecked that return UncheckedBiConsumerModifier and TypeMethodDescriptiondefault UncheckedBiConsumer<T, U> UncheckedBiConsumer.andThen(UncheckedBiConsumer<? super T, ? super U> after) Returns a composedUncheckedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.static <T,U> UncheckedBiConsumer <T, U> UncheckedBiConsumer.from(BiConsumer<T, U> consumer) Creates aUncheckedBiConsumerfrom an existingBiConsumerstatic <T,U> UncheckedBiConsumer <T, U> Unchecked.unchecked(BiConsumer<T, U> consumer) Transforms the given bi-consumer into a version that can throw exceptions.Methods in io.smallrye.mutiny.unchecked with parameters of type UncheckedBiConsumerModifier and TypeMethodDescriptiondefault UncheckedBiConsumer<T, U> UncheckedBiConsumer.andThen(UncheckedBiConsumer<? super T, ? super U> after) Returns a composedUncheckedBiConsumerthat performs, in sequence, this operation followed by theafteroperation.static <T,U> BiConsumer <T, U> Unchecked.consumer(UncheckedBiConsumer<T, U> consumer) Transforms the given (unchecked) bi-consumer into a regular bi-consumer.