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 TypeMethodDescriptiondefault BiConsumer<T, U> BiConsumer.andThen(BiConsumer<? super T, ? super U> after) default <V1,V2> BiConsumer <V1, V2> Composes a consumer this consumer using result of the specified mapping functions.static <T,U> BiConsumer <T, U> BiConsumer.empty()Returns a consumer that performs no action.static <T,U> BiConsumer <T, U> Returns a consumer that delegates to a consumer of the first parameter, ignoring the second.static <T,U> BiConsumer <T, U> Returns a consumer that delegates to a consumer of the second parameter, ignoring the first.static <T,U> BiConsumer <T, U> BiConsumer.of(Iterable<BiConsumer<? super T, ? super U>> consumers) Returns a composite consumer that delegates to zero or more consumers.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.