Uses of Interface
org.apache.commons.io.function.IOBiConsumer
Package
Description
Provides IO-only related functional interfaces for lambda expressions and method references.
-
Uses of IOBiConsumer in org.apache.commons.io.function
Modifier and TypeMethodDescriptiondefault IOBiConsumer<T,
U> IOBiConsumer.andThen
(IOBiConsumer<? super T, ? super U> after) Creates a composedIOBiConsumer
that performs, in sequence, this operation followed by theafter
operation.static <T,
U> IOBiConsumer<T, U> IOBiConsumer.noop()
Returns the no-op singleton.Modifier and TypeMethodDescriptionstatic <T,
U> void Uncheck.accept
(IOBiConsumer<T, U> consumer, T t, U u) Accepts an IO consumer with the given arguments.default IOBiConsumer<T,
U> IOBiConsumer.andThen
(IOBiConsumer<? super T, ? super U> after) Creates a composedIOBiConsumer
that performs, in sequence, this operation followed by theafter
operation.default <R> R
IOStream.collect
(IOSupplier<R> supplier, IOBiConsumer<R, ? super T> accumulator, IOBiConsumer<R, R> combiner)