class Service: (source)
Known subclasses: twisted.application.internet.ClientService
, twisted.application.internet.CooperatorService
, twisted.application.internet.StreamServerEndpointService
, twisted.application.service.MultiService
, twisted.names.secondary.SecondaryAuthorityService
, twisted.runner.procmon.ProcessMonitor
, twisted.words.protocols.jabber.component.Service
, twisted.application.internet._VolatileDataService
Implements interfaces: twisted.application.service.IService
Base class for services.
Most services should inherit from this class. It handles the book-keeping responsibilities of starting and stopping, as well as not serializing this book-keeping information.
Method | __getstate__ |
Undocumented |
Method | disown |
Use this API to remove an IService from an IServiceCollection . |
Method | privileged |
Do preparation work for starting the service. |
Method | set |
Set the name of the service. |
Method | set |
Set the parent of the service. This method is responsible for setting the parent attribute on this service (the child service). |
Method | start |
Start the service. |
Method | stop |
Stop the service. |
Instance Variable | name |
A str which is the name of the service or None. |
Instance Variable | parent |
An IServiceCollection which is the parent or None. |
Instance Variable | running |
A boolean which indicates whether the service is running. |
twisted.runner.procmon.ProcessMonitor
, twisted.application.internet._VolatileDataService
Undocumented
Use this API to remove an IService
from an IServiceCollection
.
This method is used symmetrically with setServiceParent
in that it sets the parent attribute on the child.
Returns | |
Deferred | a Deferred which is triggered when the service has finished shutting down. If shutting down is immediate, a value can be returned (usually, None ). |
twisted.application.internet.StreamServerEndpointService
, twisted.application.service.MultiService
, twisted.application.internet._AbstractServer
Do preparation work for starting the service.
Here things which should be done before changing directory, root or shedding privileges are done.
Set the name of the service.
Parameters | |
name:str | Undocumented |
Raises | |
RuntimeError | Raised if the service already has a parent. |
Set the parent of the service. This method is responsible for setting the parent attribute on this service (the child service).
Parameters | |
parent:IServiceCollection | Undocumented |
Raises | |
RuntimeError | Raised if the service already has a parent or if the service has a name and the parent already has a child by that name. |
twisted.application.internet.ClientService
, twisted.application.internet.CooperatorService
, twisted.application.internet.StreamServerEndpointService
, twisted.application.internet.TimerService
, twisted.application.service.MultiService
, twisted.names.secondary.SecondaryAuthorityService
, twisted.runner.procmon.ProcessMonitor
, twisted.application.internet._AbstractClient
, twisted.application.internet._AbstractServer
Start the service.
twisted.application.internet.ClientService
, twisted.application.internet.CooperatorService
, twisted.application.internet.StreamServerEndpointService
, twisted.application.internet.TimerService
, twisted.application.service.MultiService
, twisted.names.secondary.SecondaryAuthorityService
, twisted.runner.procmon.ProcessMonitor
, twisted.application.internet._AbstractClient
, twisted.application.internet._AbstractServer
twisted.application.service.MultiService
An IServiceCollection which is the parent or None.