Home | History | Annotate | Download | only in output

Lines Matching refs:threshold

30  * threshold is reached, and only then commit it to disk. If the stream is

31 * closed before the threshold is reached, the data will not be written to
67 * The file to which output will be directed if the threshold is exceeded.
97 * specified threshold, and save data to a file beyond that point.
99 * @param threshold The number of bytes at which to trigger an event.
100 * @param outputFile The file to which data is saved beyond the threshold.
102 public DeferredFileOutputStream(int threshold, File outputFile)
104 super(threshold);
114 * specified threshold, and save data to a temporary file beyond that point.
116 * @param threshold The number of bytes at which to trigger an event.
123 public DeferredFileOutputStream(int threshold, String prefix, String suffix, File directory)
125 this(threshold, (File)null);
140 * based, depending on the current state with respect to the threshold.
215 * If the threshold was not reached then <code>null</code> is returned.