public interface ProcessInputStreamListener
extends java.util.EventListener
ProcessInputStreamListener is a callback interface that gets called when input arrives from either a
process's standard output steam or standard error stream.EventListener| Modifier and Type | Method and Description |
|---|---|
void |
onInput(java.lang.String input)
Callback method that gets called when the
Process sends output from either its standard out
or standard error streams. |
void onInput(java.lang.String input)
Process sends output from either its standard out
or standard error streams.input - String containing output from the Process that this listener is listening to.Process.getErrorStream(),
Process.getInputStream()