1
2
3
4
5
6
7
8
9
10
11 from zope.component.interfaces import ObjectEvent
12
14 """
15 Base class for zeneventd lifecycle events.
16 """
17
19 """
20 Fired at the end of zeneventd's constructor.
21 """
22
24 """
25 Fired when zeneventd is started and ready to listen.
26 """
27
29 """
30 Called when zeneventd receives a SIGTERM.
31 """
32
34 """
35 Called when zeneventd receives a SIGUSR1 event -- that is,
36 when "zeneventd debug" is run.
37 """
41
43 """
44 Called when zeneventd is building its option parser.
45 """
46