Class t.a.a.ApplicationRunner(object):

Part of twisted.application.app View Source View In Hierarchy

Known subclasses: twisted.scripts._twistd_unix.UnixApplicationRunner, twisted.scripts._twistw.WindowsApplicationRunner

An object which helps running an application based on a config object.

Subclass me and implement preApplication and postApplication methods. postApplication generally will want to run the reactor after starting the application.
Instance VariablesconfigThe config object, which provides a dict-like interface.
applicationAvailable in postApplication, but not preApplication. This is the application object.
Method __init__ Undocumented
Method run Run the application.
Method preApplication Override in subclass.
Method postApplication Override in subclass.
Method createOrGetApplication Create or load an Application based on the parameters found in the
def __init__(self, config): (source)
Undocumented
def run(self): (source)
Run the application.
def preApplication(self): (source)

Override in subclass.

This should set up any state necessary before loading and running the Application.
def postApplication(self): (source)

Override in subclass.

This will be called after the application has been loaded (so the application attribute will be set). Generally this should start the application and run the reactor.
def createOrGetApplication(self): (source)

Create or load an Application based on the parameters found in the given ServerOptions instance.

If a subcommand was used, the service.IServiceMaker that it represents will be used to construct a service to be added to a newly-created Application.

Otherwise, an application will be loaded based on parameters in the config.
API Documentation for twisted, generated by pydoctor.