twisted.internet.win32eventreactor._ThreadFDWrapper(object)
class documentationtwisted.internet.win32eventreactor
(View In Hierarchy)
This wraps an event handler and translates notification in the helper Win32Reactor
thread into a notification in the primary reactor thread.
Method | __init__ | Undocumented |
Method | logPrefix | Return the original handler's log prefix, as it was given to
__init__ . |
Method | connectionLost | Pass through to the wrapped descriptor, but in the main reactor thread
instead of the helper Win32Reactor thread. |
Instance Variable | _reactor | The primary reactor, the one to which event notification will be sent. |
Instance Variable | _fd | The FileDescriptor
to which the event will be dispatched. |
Instance Variable | _action | A str giving the method of _fd which handles the
event. |
Instance Variable | _logPrefix | The pre-fetched log prefix string for _fd , so that
_fd.logPrefix does not need to be called in a non-main thread. |
Method | _execute | No summary |
_fd
, so that
_fd.logPrefix
does not need to be called in a non-main thread.