public class StreamPumper extends Thread
| Modifier and Type | Class and Description |
|---|---|
static interface |
StreamPumper.LineConsumer
Provides a function to consume a line read from a stream.
|
Thread.State, Thread.UncaughtExceptionHandlerMAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY| Constructor and Description |
|---|
StreamPumper(InputStream stream,
StreamPumper.LineConsumer consumer)
Creates a new pumper for the specified stream.
|
| Modifier and Type | Method and Description |
|---|---|
StreamPumper.LineConsumer |
getConsumer()
Gets the consumer of lines read from the input stream.
|
void |
run() |
activeCount, checkAccess, clone, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yieldpublic StreamPumper(InputStream stream, StreamPumper.LineConsumer consumer)
stream - The input stream to read from.consumer - The consumer of lines read from the input stream.public StreamPumper.LineConsumer getConsumer()