use of org.apache.nifi.remote.io.InterruptableInputStream in project nifi by apache.
the class HttpInput method setInputStream.
public void setInputStream(InputStream inputStream) {
interruptableIn = new InterruptableInputStream(inputStream);
this.countingIn = new ByteCountingInputStream(interruptableIn);
}
Aggregations