All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.firefly.utils.io.PipedStream Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy