Threaded select reactor

The threadedselectreactor is a specialized reactor for integrating with arbitrary foreign event loop, such as those you find in GUI toolkits.

There are three things you'll need to do to use this reactor.

Install the reactor at the beginning of your program, before importing the rest of Twisted:

   | from twisted.internet import _threadedselect
   | _threadedselect.install()

Interleave this reactor with your foreign event loop, at some point after your event loop is initialized:

   | from twisted.internet import reactor
   | reactor.interleave(foreignEventLoopWakerFunction)
   | self.addSystemEventTrigger('after', 'shutdown', foreignEventLoopStop)

Instead of shutting down the foreign event loop directly, shut down the reactor:

   | from twisted.internet import reactor
   | reactor.stop()

In order for Twisted to do its work in the main thread (the thread that interleave is called from), a waker function is necessary. The waker function will be called from a "background" thread with one argument: func. The waker function's purpose is to call func() from the main thread. Many GUI toolkits ship with appropriate waker functions. Some examples of this are wxPython's wx.callAfter (may be wxCallAfter in older versions of wxPython) or PyObjC's PyObjCTools.AppHelper.callAfter. These would be used in place of "foreignEventLoopWakerFunction" in the above example.

The other integration point at which the foreign event loop and this reactor must integrate is shutdown. In order to ensure clean shutdown of Twisted, you must allow for Twisted to come to a complete stop before quitting the application. Typically, you will do this by setting up an after shutdown trigger to stop your foreign event loop, and call reactor.stop() where you would normally have initiated the shutdown procedure for the foreign event loop. Shutdown functions that could be used in place of "foreignEventloopStop" would be the ExitMainLoop method of the wxApp instance with wxPython, or the PyObjCTools.AppHelper.stopEventLoop function.

Function dictRemove Undocumented
Function raiseException Undocumented
Class ThreadedSelectReactor A threaded select() based reactor - runs on all POSIX platforms and on Win32.
Function install Configure the twisted mainloop to be run using the select() reactor.
def dictRemove(dct, value): (source)
Undocumented
def raiseException(e): (source)
Undocumented
def install(): (source)

Configure the twisted mainloop to be run using the select() reactor.

API Documentation for Twisted, generated by pydoctor at 2017-02-11 20:06:04.