class documentation
class _SocketWaker(log.Logger): (source)
Constructor: _SocketWaker()
Implements interfaces: twisted.internet._signals._IWaker
The self-pipe trick<http://cr.yp.to/docs/selfpipe.html>, implemented using a pair of sockets rather than pipes (due to the lack of support in select() on Windows for pipes), used to wake up the main loop from another thread.
Method | __init__ |
Initialize. |
Method | connection |
Called when connection was closed and the pipes. |
Method | do |
Read some data from my connection. |
Method | wake |
Send a byte to my connection. |
Class Variable | disconnected |
Undocumented |
Instance Variable | fileno |
Undocumented |
Instance Variable | r |
Undocumented |
Instance Variable | w |
Undocumented |
Inherited from Logger
:
Method | log |
Override this method to insert custom logging behavior. Its return value will be inserted in front of every line. It may be called more times than the number of output lines. |