Uses of Class
org.apache.commons.io.output.ThresholdingOutputStream
-
Packages that use ThresholdingOutputStream Package Description org.apache.commons.io.output This package provides implementations of output classes, such asOutputStream
andWriter
. -
-
Uses of ThresholdingOutputStream in org.apache.commons.io.output
Subclasses of ThresholdingOutputStream in org.apache.commons.io.output Modifier and Type Class Description class
DeferredFileOutputStream
An output stream which will retain data in memory until a specified threshold is reached, and only then commit it to disk.Constructor parameters in org.apache.commons.io.output with type arguments of type ThresholdingOutputStream 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.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.
-