Home | History | Annotate | Download | only in output

Lines Matching refs:threshold

27  * stream type when the threshold is exceeded.

33 * NOTE: This implementation may trigger the event <em>before</em> the threshold
35 * cause the threshold to be exceeded.
49 * The threshold at which the event will be triggered.
51 private int threshold;
61 * Whether or not the configured threshold has been exceeded.
71 * specified threshold.
73 * @param threshold The number of bytes at which to trigger an event.
75 public ThresholdingOutputStream(int threshold)
77 this.threshold = threshold;
169 * Returns the threshold, in bytes, at which an event will be triggered.
171 * @return The threshold point, in bytes.
175 return threshold;
191 * Determines whether or not the configured threshold has been exceeded for
194 * @return <code>true</code> if the threshold has been reached;
199 return (written > threshold);
208 * configured threshold to be exceeded. If so, triggers an event to allow
218 if (!thresholdExceeded && (written + count > threshold))
250 * Indicates that the configured threshold has been reached, and that a