Uses of Interface
org.wildfly.clustering.function.BiConsumer
Packages that use BiConsumer
-
Uses of BiConsumer in org.wildfly.clustering.function
Fields in org.wildfly.clustering.function declared as BiConsumerMethods in org.wildfly.clustering.function that return BiConsumerModifier and TypeMethodDescriptionstatic <T,U> BiConsumer <T, U> BiConsumer.acceptAll(Iterable<? extends BiConsumer<? super T, ? super U>> consumers) Returns a composite consumer that delegates to zero or more consumers.static <T,U> BiConsumer <T, U> BiConsumer.acceptFormer(Consumer<? super T> consumer) Returns a consumer that delegates to a consumer of the first parameter, ignoring the second.static <T,U> BiConsumer <T, U> BiConsumer.acceptLatter(Consumer<? super U> consumer) Returns a consumer that delegates to a consumer of the second parameter, ignoring the first.default BiConsumer<T, U> BiConsumer.andThen(BiConsumer<? super T, ? super U> after) default <V1,V2> BiConsumer <V1, V2> Composes a binary consumer using the specified parameter mapping functions.default <V1,V2> BiConsumer <V1, V2> Consumer.compose(BiFunction<V1, V2, T> mapper) Composes a binary consumer that invokes this consumer using result of the specified binary function.default <V1,V2> BiConsumer <V1, V2> DoubleConsumer.compose(ToDoubleBiFunction<V1, V2> composer) Composes a binary consumer that invokes this consumer using result of the specified binary function.default <V1,V2> BiConsumer <V1, V2> IntConsumer.compose(ToIntBiFunction<V1, V2> composer) Composes a binary consumer that invokes this consumer using result of the specified binary function.default <V1,V2> BiConsumer <V1, V2> LongConsumer.compose(ToLongBiFunction<V1, V2> composer) Composes a binary consumer that invokes this consumer using result of the specified binary function.static <T,U> BiConsumer <T, U> BiConsumer.empty()Returns a consumer that performs no action.default BiConsumer<T, U> BiConsumer.handle(Consumer<RuntimeException> handler) Returns a new consumer that delegates to the specified handler in the event of an exception.static <T,U> BiConsumer <T, U> Returns a composite consumer that delegates to a consumer per parameter.default BiConsumer<U, T> BiConsumer.reverse()Returns a consumer that processes this consumer with reversed parameter order.static <E extends Throwable>
BiConsumer<String, E> BiConsumer.throwing(BiFunction<String, E, ? extends RuntimeException> exceptionFactory) Returns a consumer that wraps an exception as a runtime exception via the specified factory.