Service architecture for Twisted.
Services are arranged in a hierarchy. At the leafs of the hierarchy, the services which actually interact with the outside world are started. Services can be named or anonymous -- usually, they will be named if there is need to access them through the hierarchy (from a parent or a sibling).
Maintainer: Moshe Zadka
Interface |
|
Process running parameters. |
Interface |
|
A service. |
Interface |
|
Collection of services. |
Interface |
|
An object which can be used to construct services in a flexible way. |
Class |
|
Straightforward Service Container. |
Class |
|
Process running parameters. |
Class |
|
Base class for services. |
Class |
|
Utility class to simplify the definition of IServiceMaker plugins. |
Function |
|
Return a compound class. |
Function | load |
Load Application from a given file. |
Return a compound class.
Return an object supporting the IService
, IServiceCollection
, IProcess
and sob.IPersistable
interfaces, with the given parameters. Always access the return value by explicit casting to one of the interfaces.
Load Application from a given file.
The serialization format it was saved in should be given as kind, and is one of pickle, source, xml or python. If passphrase is given, the application was encrypted with the given passphrase.
Parameters | |
filename:str | Undocumented |
kind:str | Undocumented |
passphrase:str | Undocumented |