1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 __maintainer__ = 'Florian Boucault <florian@fluendo.com>'
19
20
21 from elisa.core.component import Component
22
23
25 """ ServiceProviders run during all the lifetime of the application.
26 They are started first in the components initialization sequence, so they
27 should listen to the message bus for the 'components_initialized' message
28 before communication with other components.
29 """
30
32 """
33 Start the service.
34
35 DOCME more
36 """
37
39 """
40 Stop the service.
41
42 DOCME more
43 """
44