InputStream
into a buffer.AbstractInputStreamConsumer.read()
until it returns -1, then calls
AbstractInputStreamConsumer.postProcessData()
, and then calls AbstractInputStreamConsumer.data()
, returning what
AbstractInputStreamConsumer.data()
returns.Callable
that is cancelable.ThreadPoolExecutor
that returns
Future
instances that, when canceled,
will invoke CancelableCallable.cancel()
if the submitted
Callable
is a CancelableCallable
.InputStream
, discarding what is read as it goes, until it
encounters the end of the stream or an exception is thrown.InputStream
, placing what is read into a fixed-size buffer,
until it encounters the end of the stream or an exception is thrown.InputStream
, placing what is read into an automatically
growing buffer, until it encounters the end of the stream or an exception is
thrown.InputStream
.InputStreamConsumer
instances.GrowingBufferInputStreamConsumer
instances.GrowingBufferInputStreamConsumer
instances.ProcessRunner
.systemclass for the Procrun library.
ProcessRunner
with the specified builder, and
with the default standard-output consumer and standard-error consumer.ProcessRunner
with the specified builder and
standard-output consumer, and with the default standard-error consumer.ProcessRunner
with the specified builder,
standard-output consumer, and standard-error consumer.ProcessRunner
with the specified builder,
standard-output consumer, standard-error consumer, and timeout.