Events and Event Handlers

FIXME: this section is not yet written

class kaa.Event(name, *args)

A simple event that can be passed to the registered event handler.

Init the event.

Synopsis

Class Hierarchy

kaa.Event

Methods
post()Post event into the queue.
Properties
This class has no properties.
Signals
This class has no signals.

Methods

post(*args)

Post event into the queue.

class kaa.EventHandler(callback, *args, **kwargs)

Event handling callback.

Synopsis

Class Hierarchy

kaa.Callable
└─ kaa.nf_wrapper.NotifierCallback
     └─ kaa.EventHandler

Methods
register()Register to a list of events. If no event is given, all events will be used.
unregister()Unregister callback.
Properties
activeread-onlyTrue if the object is bound to the event manager.
Signals
This class has no signals.

Methods

register(events=[])

Register to a list of events. If no event is given, all events will be used.

unregister()

Unregister callback.

Properties

active

True if the object is bound to the event manager.

Previous topic

Timers

Next topic

InProgress Objects

This Page