Uses of Interface
kala.compress.function.IOConsumer
-
Packages that use IOConsumer Package Description kala.compress.archivers Provides a unified API and factories for dealing with archives in different formats.kala.compress.function -
-
Uses of IOConsumer in kala.compress.archivers
Methods in kala.compress.archivers with parameters of type IOConsumer Modifier and Type Method Description voidArchiveInputStream. forEach(IOConsumer<? super E> action)Performs the given action for each element of the stream until all elements have been processed or the action throws an exception. -
Uses of IOConsumer in kala.compress.function
Fields in kala.compress.function declared as IOConsumer Modifier and Type Field Description static IOConsumer<?>IOConsumer. NOOP_IO_CONSUMERConsider private.Methods in kala.compress.function that return IOConsumer Modifier and Type Method Description default IOConsumer<T>IOConsumer. andThen(IOConsumer<? super T> after)Returns a composedIOConsumerthat performs, in sequence, this operation followed by theafteroperation.static <T> IOConsumer<T>IOConsumer. noop()Returns the constant no-op consumer.Methods in kala.compress.function with parameters of type IOConsumer Modifier and Type Method Description default IOConsumer<T>IOConsumer. andThen(IOConsumer<? super T> after)Returns a composedIOConsumerthat performs, in sequence, this operation followed by theafteroperation.default voidIOIterator. forEachRemaining(IOConsumer<? super E> action)LikeIterator.forEachRemaining(Consumer).
-