Uses of Interface
org.apache.commons.io.function.IOBiConsumer
-
Packages that use IOBiConsumer Package Description org.apache.commons.io.function Provides IO-only related functional interfaces for lambda expressions and method references.org.apache.commons.io.input Provides implementations of input classes, such asInputStreamandReader. -
-
Uses of IOBiConsumer in org.apache.commons.io.function
Fields in org.apache.commons.io.function declared as IOBiConsumer Modifier and Type Field Description (package private) static IOBiConsumerConstants. IO_BI_CONSUMERNo-op singleton.Methods in org.apache.commons.io.function that return IOBiConsumer Modifier and Type Method Description default IOBiConsumer<T,U>IOBiConsumer. andThen(IOBiConsumer<? super T,? super U> after)Creates a composedIOBiConsumerthat performs, in sequence, this operation followed by theafteroperation.static <T,U>
IOBiConsumer<T,U>IOBiConsumer. noop()Returns the no-op singleton.Methods in org.apache.commons.io.function with parameters of type IOBiConsumer Modifier and Type Method Description (package private) static <T,U>
voidErase. accept(IOBiConsumer<T,U> consumer, T t, U u)Delegates to the givenIOBiConsumerbut erases itsIOExceptionfor the compiler, while still throwing the exception at runtime.static <T,U>
voidUncheck. 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 composedIOBiConsumerthat performs, in sequence, this operation followed by theafteroperation.default <R> RIOStream. collect(IOSupplier<R> supplier, IOBiConsumer<R,? super T> accumulator, IOBiConsumer<R,R> combiner)LikeStream.collect(java.util.function.Supplier, java.util.function.BiConsumer, java.util.function.BiConsumer). -
Uses of IOBiConsumer in org.apache.commons.io.input
Fields in org.apache.commons.io.input declared as IOBiConsumer Modifier and Type Field Description private IOBiConsumer<java.lang.Long,java.lang.Long>BoundedInputStream.AbstractBuilder. onMaxCountprivate IOBiConsumer<java.lang.Long,java.lang.Long>BoundedInputStream. onMaxCountMethods in org.apache.commons.io.input that return IOBiConsumer Modifier and Type Method Description (package private) IOBiConsumer<java.lang.Long,java.lang.Long>BoundedInputStream.AbstractBuilder. getOnMaxCount()Methods in org.apache.commons.io.input with parameters of type IOBiConsumer Modifier and Type Method Description TBoundedInputStream.AbstractBuilder. setOnMaxCount(IOBiConsumer<java.lang.Long,java.lang.Long> onMaxCount)Sets the defaultBoundedInputStream.onMaxLength(long, long)behavior,nullresets to a NOOP.
-