package com.firefly.utils.io; import java.io.Closeable; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; public interface PipedStream extends Closeable { InputStream getInputStream() throws IOException; OutputStream getOutputStream() throws IOException; }