twisted.words.protocols.jabber.component.ServiceManager(service.MultiService) class documentationtwisted.words.protocols.jabber.component
(View In Hierarchy)
Business logic for a managed component connection to a Jabber router.
This service maintains a single connection to a Jabber router and 
provides facilities for packet routing and transmission. Business logic 
modules are services implementing ijabber.IService
(like subclasses of Service),
and added as sub-service.
| Method | __init__ | Undocumented | 
| Method | getFactory | Undocumented | 
| Method | send | Send data over the XML stream. | 
| Method | _connected | Undocumented | 
| Method | _authd | Undocumented | 
| Method | _disconnected | Undocumented | 
Inherited from MultiService:
| Method | privilegedStartService | Do preparation work for starting the service. | 
| Method | startService | Start the service. | 
| Method | stopService | Stop the service. | 
| Method | getServiceNamed | Get the child service with a given name. | 
| Method | __iter__ | Get an iterator over all child services. | 
| Method | addService | Add a child service. | 
| Method | removeService | Remove a child service. | 
Inherited from Service (via MultiService):
| Method | __getstate__ | Undocumented | 
| Method | setName | Set the name of the service. | 
| Method | setServiceParent | Set the parent of the service.  This method is responsible for setting 
the parentattribute on this service (the child service). | 
| Method | disownServiceParent | Use this API to remove an IServicefrom anIServiceCollection. | 
Send data over the XML stream.
When there is no established XML stream, the data is queued and sent out when a new XML stream has been established and initialized.
| Parameters | obj | data to be sent over the XML stream. This is usually an object providing domish.IElement,
or serialized XML. Seexmlstream.XmlStreamfor details. |