SubProcess

object SubProcess
Companion:
class
class Object
trait Matchable
class Any

Type members

Classlikes

class InputStream(val wrapped: OutputStream) extends OutputStream with DataOutput

A BufferedWriter with the underlying java.io.OutputStream exposed

A BufferedWriter with the underlying java.io.OutputStream exposed

Note that all writes that occur through this class are thread-safe and synchronized. If you wish to perform writes without the synchronization overhead, you can use the underlying wrapped stream directly

class OutputStream(val wrapped: InputStream) extends InputStream with DataInput with ByteData

A combination BufferedReader and java.io.InputStream, this allows you to read both bytes and lines, without worrying about the buffer used for reading lines messing up your reading of bytes.

A combination BufferedReader and java.io.InputStream, this allows you to read both bytes and lines, without worrying about the buffer used for reading lines messing up your reading of bytes.

Note that all reads that occur through this class are thread-safe and synchronized. If you wish to perform writes without the synchronization overhead, you can use the underlying wrapped stream directly