Class | Description |
---|---|
BufferInputStreamConsumer |
I am a base class for consumers that read data from an
InputStream into a buffer. |
FixedSizeBufferInputStreamConsumer |
I read an
InputStream , placing what I read into a fixed-size
buffer, until I encounter the end of the stream or an exception is
thrown. |
GrowingBufferInputStreamConsumer |
I read an
InputStream , placing what I read into an automatically
growing buffer, until I encounter the end of the stream or an exception
is thrown. |
InputStreamConsumer |
I am the base class for all input stream consumers; I read an
InputStream until encountering the end of the stream or an
exception is thrown. |
NullInputStreamConsumer |
I read an
InputStream , discarding what I read as I go, until I
encounter the end of the stream or an exception is thrown. |
ProcessRunner |
I run a
Process and consume data written to its native process'
standard output and standard error streams. |
ProcessRunnerResult |
I am the result of running a
ProcessRunner . |
ProcrunSystem |
I am the
systemclass for the Procrun library. |
See ProcessRunner
for usage examples.