Events
This module define the basic Event object and common events.
End Event
This Event is sent just after an Event has ended
Parameters: |
|
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Error Event
This Event is sent for any exceptions that occur during the execution of an Event Handler that is not SystemExit or KeyboardInterrupt.
Parameters: |
|
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Failure Event
This Event is sent when an error has occurred with the execution of an Event Handlers.
Parameters: |
|
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Filter Event
This Event is sent when an Event is filtered by some Event Handler.
Parameters: |
|
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Registered Event
This Event is sent when a Component has registered with another Component or Manager. This Event is only sent iif the Component or Manager being registered with is not itself.
Parameters: |
|
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Signal Event
This Event is sent when a Component receives a signal.
Parameters: |
|
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Start Event
This Event is sent just before an Event is started
Parameters: | evt (Event) – The event about to start |
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Started Event
This Event is sent when a Component has started running.
Parameters: |
|
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Stopped Event
This Event is sent when a Component has stopped running.
Parameters: | component (Component or Manager) – The component that has stopped |
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Success Event
This Event is sent when an Event Handler’s execution has completed successfully.
Parameters: |
|
---|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Unregistered Event
This Event is sent when a Component has been unregistered from its Component or Manager.
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Create a new Event Object
Create a new Event Object populating it with the given list of arguments and keyword arguments.
Variables: |
|
---|---|
Parameters: |
|
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
none
none