Uses of Interface
org.apache.commons.io.function.IOConsumer
-
Packages that use IOConsumer Package Description org.apache.commons.io This package defines utility classes for working with streams, readers, writers and files.org.apache.commons.io.function This package defines IO-only related functional interfaces for lambda expressions and method references.org.apache.commons.io.output This package provides implementations of output classes, such asOutputStream
andWriter
. -
-
Uses of IOConsumer in org.apache.commons.io
Methods in org.apache.commons.io with parameters of type IOConsumer Modifier and Type Method Description static void
IOUtils. close(java.io.Closeable closeable, IOConsumer<java.io.IOException> consumer)
Closes the givenCloseable
as a null-safe operation. -
Uses of IOConsumer in org.apache.commons.io.function
Fields in org.apache.commons.io.function declared as IOConsumer Modifier and Type Field Description static IOConsumer<?>
IOConsumer. NOOP_IO_CONSUMER
Package private constant; consider private.Methods in org.apache.commons.io.function that return IOConsumer Modifier and Type Method Description default IOConsumer<T>
IOConsumer. andThen(IOConsumer<? super T> after)
Returns a composedIoConsumer
that performs, in sequence, this operation followed by theafter
operation.default IOConsumer<T>
IOFunction. andThen(java.util.function.Consumer<? super R> after)
Returns a composedIOFunction
that first applies this function to its input, and then applies theafter
consumer to the result.default IOConsumer<T>
IOFunction. andThen(IOConsumer<? super R> after)
Returns a composedIOFunction
that first applies this function to its input, and then applies theafter
consumer to the result.static <T> IOConsumer<T>
IOConsumer. noop()
Returns a constant NOOP consumer.Methods in org.apache.commons.io.function with parameters of type IOConsumer Modifier and Type Method Description default IOConsumer<T>
IOConsumer. andThen(IOConsumer<? super T> after)
Returns a composedIoConsumer
that performs, in sequence, this operation followed by theafter
operation.default IOConsumer<T>
IOFunction. andThen(IOConsumer<? super R> after)
Returns a composedIOFunction
that first applies this function to its input, and then applies theafter
consumer to the result. -
Uses of IOConsumer in org.apache.commons.io.output
Constructors in org.apache.commons.io.output with parameters of type IOConsumer Constructor Description ThresholdingOutputStream(int threshold, IOConsumer<ThresholdingOutputStream> thresholdConsumer, IOFunction<ThresholdingOutputStream,java.io.OutputStream> outputStreamGetter)
Constructs an instance of this class which will trigger an event at the specified threshold.
-