StandardStreams
The standard input, output, and error streams.
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
True if the error is connected to the TTY.
Link copied to clipboard
True if the input is connected to the TTY.
Link copied to clipboard
True if the output is connected to the TTY.
Link copied to clipboard
Read up to count bytes into buffer at offset from the input stream. The number of bytes read will be returned. 0 will be returned if interruptInputRead is called while waiting for data.
Link copied to clipboard
expect fun readInputWithTimeout(buffer: ByteArray, offset: Int, count: Int, timeoutMillis: Int): Int
Read up to count bytes into buffer at offset from the input stream. The number of bytes read will be returned. 0 will be returned if interruptInputRead is called while waiting for data, or if at least timeoutMillis have passed without data.
Link copied to clipboard
Link copied to clipboard