- closevoid close() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- flushvoid flush() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- isOpenbool isOpen() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- openvoid open() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- peekbool peek() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- pipeReadsbool pipeReads() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- pipeReadsvoid pipeReads(bool value) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- pipeWritesbool pipeWrites() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- pipeWritesvoid pipeWrites(bool value) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- readsize_t read(ubyte[] buf) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- readEndsize_t readEnd() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- writevoid write(ubyte[] buf) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- writeEndsize_t writeEnd() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- isOpenbool isOpen() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- peekbool peek() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- openvoid open() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- closevoid close() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- readsize_t read(ubyte[] buf) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- readAllvoid readAll(ubyte[] buf) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- readEndsize_t readEnd() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- writevoid write(ubyte[] buf) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- writeEndsize_t writeEnd() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- flushvoid flush() 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- borrowconst(ubyte)[] borrow(ubyte* buf, size_t len) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
- consumevoid consume(size_t len) 
- Undocumented in source. Be warned that the author may not have intended to support it. 
Pipes data request from one transport to another when readEnd() or writeEnd() is called.
A typical use case would be to log requests on e.g. a socket to disk (i. e. pipe them to a TFileWriterTransport).
The implementation keeps an internal buffer which expands to hold the whole amount of data read/written until the corresponding *End() method is called.
Contrary to the C++ implementation, this doesn't introduce yet another layer of input/output buffering, all calls are passed to the underlying source transport verbatim.