streams
The client standard input, output, and error streams.
If stdinIsTty
was true in the call to bind, the standard input will be hooked to tty. Otherwise, data can be sent to the input stream with writeStandardInput.
If stdoutIsTty
was true in the call to bind, the standard output will be hooked to tty. Otherwise, data can be received from the output stream with readStandardOutput.
If stderrIsTty
was true in the call to bind, the standard error will be hooked to tty. Otherwise, data can be received from the error stream with readStandardError.
Calls to StandardStreams.interceptOtherWrites will throw an exception on this instance.