use of org.apache.nifi.remote.io.InterruptableOutputStream in project nifi by apache.
the class HttpOutput method setOutputStream.
public void setOutputStream(OutputStream outputStream) {
interruptableOut = new InterruptableOutputStream(outputStream);
this.countingOut = new ByteCountingOutputStream(interruptableOut);
}
Aggregations