1 package com.atlassian.core.spool;
2
3 /**
4 * Implemented by spools that switch behaviour based on the number of bytes spooled
5 */
6 public interface ThresholdingSpool extends Spool
7 {
8 void setThresholdBytes(int bytes);
9 int getThresholdBytes();
10 }