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 Variables | config | The config object, which provides a dict-like interface. |
application | Available in postApplication, but not preApplication. This is the application object. | |
profilerFactory | Factory for creating a profiler object, able to profile the application if options are set accordingly. | |
profiler | Instance provided by profilerFactory .
|
Method | __init__ | Undocumented |
Method | run | Run the application. |
Method | startReactor | Run the reactor with the given configuration. Subclasses should
probably call this from postApplication .
|
Method | preApplication | Override in subclass. |
Method | startLogging | Initialize the logging system. |
Method | getLogObserver | Create a log observer to be added to the logging system before running this application. |
Method | postApplication | Override in subclass. |
Method | createOrGetApplication | Create or load an Application based on the parameters found in the given
ServerOptions
instance.
|
postApplication
.
See Also | runReactorWithLogging
|
Override in subclass.
This should set up any state necessary before loading and running the Application.Parameters | observer | The observer to add to the logging system. |
Override in subclass.
This will be called after the application has been loaded (so theapplication
attribute will be set). Generally this should
start the application and run the reactor.
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.