Constructor.
Constructor
Output device
Enables or disables the TCP_CORK feature.
Tells whether the TCP_CORK feature is currently enabled.
Sends all pending data immediately. May be overridden by a subclass; calls corkFlush() by default.
Clears any pending data in the buffer.
Writes data to the output conduit. Whenever the output conduit is not ready for writing, the output writing fiber is suspended and continues writing on resume.
Attempts to write data to the output conduit. The output conduit may or may not write all elements of data.
Set to true to make send() send all data immediately if the TCP_CORK feature is enabled. This has the same effect as calling corkFlush() after each send().
Number of bytes sent so far
Local aliases
I/O device
Events to register the I/O device for.
IOWarning exception instance
IOError exception instance
Resumes the fiber coroutine and handle the events reported for the conduit. The fiber must be suspended (HOLD state).
Registers this instance in the select dispatcher and repeatedly calls transmit() until the transmission is finished.
Reads/writes data from/to super.conduit for which events have been reported.