Interface | Description |
---|---|
CancelableCallable<V> |
A
Callable that is cancelable. |
InputStreamConsumer |
Consumes data from an
InputStream . |
InputStreamConsumerFactory |
Factory that creates
InputStreamConsumer instances. |
Class | Description |
---|---|
AbstractInputStreamConsumer |
An abstract class for implementing input stream consumers.
|
BufferInputStreamConsumer |
An abstract class for consumers that read data from an
InputStream
into a buffer. |
CancelableExecutor |
A
ThreadPoolExecutor that returns
Future instances that, when canceled,
will invoke CancelableCallable.cancel() if the submitted
Callable is a CancelableCallable . |
DiscardingInputStreamConsumer |
Reads an
InputStream , discarding what is read as it goes, until it
encounters the end of the stream or an exception is thrown. |
FixedSizeBufferInputStreamConsumer |
Reads an
InputStream , placing what is read into a fixed-size buffer,
until it encounters the end of the stream or an exception is thrown. |
GrowingBufferInputStreamConsumer |
Reads an
InputStream , placing what is read into an automatically
growing buffer, until it encounters the end of the stream or an exception is
thrown. |
ProcessRunner |
Runs an operating system process and consumes data written to its standard
output and standard error streams.
|
ProcessRunnerResult |
The result of running a
ProcessRunner . |
ProcrunSystem |
The
systemclass for the Procrun library. |
See ProcessRunner
for usage examples.