class documentation

class WindowsApplicationRunner(app.ApplicationRunner): (source)

View In Hierarchy

An ApplicationRunner which avoids unix-specific things. No forking, no PID files, no privileges.
Method post​Application Start the application and run the reactor.
Method pre​Application Do pre-application-creation setup.
Instance Variable oldstderr Undocumented
Instance Variable oldstdout Undocumented

Inherited from ApplicationRunner:

Method __init__ Undocumented
Method create​Or​Get​Application Create or load an Application based on the parameters found in the given ServerOptions instance.
Method run Run the application.
Method start​Reactor Run the reactor with the given configuration. Subclasses should probably call this from postApplication.
Instance Variable application Available in postApplication, but not preApplication. This is the application object.
Instance Variable config The config object, which provides a dict-like interface.
Instance Variable logger Instance provided by loggerFactory.
Instance Variable logger​Factory Factory for creating object responsible for logging.
Instance Variable profiler Instance provided by profilerFactory.
Instance Variable profiler​Factory Factory for creating a profiler object, able to profile the application if options are set accordingly.
Instance Variable _exit​Signal Undocumented
def postApplication(self): (source)
Start the application and run the reactor.
def preApplication(self): (source)
Do pre-application-creation setup.
oldstderr = (source)

Undocumented

oldstdout = (source)

Undocumented