tango.sys.Pipe

License:

BSD style: see license.txt

Author:

Juan Jose Comellas
class PipeConduit : Device
Conduit for pipes.
Each PipeConduit can only read or write, depending on the way it has been created.
~this() [public]
Destructor.
size_t bufferSize() [public, override, const]
Returns the buffer size for the PipeConduit.
immutable(char)[] toString() [public, override]
Returns the name of the device.
class Pipe
Factory class for Pipes.
this(uint bufferSize = DefaultBufferSize) [public]
Create a Pipe.
PipeConduit sink() [public, @property]
Return the PipeConduit that you can write to.
PipeConduit source() [public, @property]
Return the PipeConduit that you can read from.