org.buildobjects.process.StreamConsumer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jproc Show documentation
Show all versions of jproc Show documentation
Library for launching external processes and managing input and output.
package org.buildobjects.process;
import java.io.IOException;
import java.io.InputStream;
public interface StreamConsumer {
/**
* Consume something until the bitter end.
*
* @param stream stream to be consumed.
*/
void consume(InputStream stream) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy