Uses of Interface
org.zeroturnaround.exec.stream.ExecuteStreamHandler
-
Packages that use ExecuteStreamHandler Package Description org.zeroturnaround.exec org.zeroturnaround.exec.close org.zeroturnaround.exec.stream -
-
Uses of ExecuteStreamHandler in org.zeroturnaround.exec
Fields in org.zeroturnaround.exec declared as ExecuteStreamHandler Modifier and Type Field Description private ExecuteStreamHandler
ProcessExecutor. streams
Process stream Handler (copied from Commons Exec library).Methods in org.zeroturnaround.exec that return ExecuteStreamHandler Modifier and Type Method Description ExecuteStreamHandler
ProcessExecutor. streams()
Methods in org.zeroturnaround.exec with parameters of type ExecuteStreamHandler Modifier and Type Method Description private ProcessCloser
ProcessExecutor. newProcessCloser(ExecuteStreamHandler streams)
private WaitForProcess
ProcessExecutor. startInternal(java.lang.Process process, ProcessAttributes attributes, ExecuteStreamHandler streams, java.io.ByteArrayOutputStream out)
ProcessExecutor
ProcessExecutor. streams(ExecuteStreamHandler streams)
Sets a stream handler for the process being executed.private void
ProcessExecutor. validateStreams(ExecuteStreamHandler streams, boolean readOutput)
Validates that ifreadOutput
istrue
the output could be read with the givenExecuteStreamHandler
instance. -
Uses of ExecuteStreamHandler in org.zeroturnaround.exec.close
Fields in org.zeroturnaround.exec.close declared as ExecuteStreamHandler Modifier and Type Field Description protected ExecuteStreamHandler
StandardProcessCloser. streams
Constructors in org.zeroturnaround.exec.close with parameters of type ExecuteStreamHandler Constructor Description StandardProcessCloser(ExecuteStreamHandler streams)
TimeoutProcessCloser(ExecuteStreamHandler streams, long timeout, java.util.concurrent.TimeUnit unit)
Creates new instance ofTimeoutProcessCloser
. -
Uses of ExecuteStreamHandler in org.zeroturnaround.exec.stream
Classes in org.zeroturnaround.exec.stream that implement ExecuteStreamHandler Modifier and Type Class Description class
PumpStreamHandler
Copies standard output and error of subprocesses to standard output and error of the parent process.
-