| Home | Trees | Index | Help |
|---|
| Package rdflib :: Module events :: Class Event |
|
object --+
|
Event
StoreCreatedEvent,
TripleAddedEvent,
TripleRemovedEventAn event is a container for attributes. The source of an event creates this object, or a subclass, gives it any kind of data that the events handlers need to handle the event, and then calls notify(event).
The target of an event registers a function to handle the event it is interested with subscribe(). When a sources calls notify(event), each subscriber to that even will be called i no particular order.| Method Summary | |
|---|---|
__init__(self,
**kw)
| |
__repr__(self)
| |
| Inherited from object | |
x.__delattr__('name') <==> del x.name | |
x.__getattribute__('name') <==> x.name | |
x.__hash__() <==> hash(x) | |
T.__new__(S, ...) -> a new object with type S, a subtype of T | |
helper for pickle | |
helper for pickle | |
x.__setattr__('name', value) <==> x.name = value | |
x.__str__() <==> str(x) | |
| Home | Trees | Index | Help |
|---|
| Generated by Epydoc 2.1 on Wed Apr 4 16:05:46 2007 | http://epydoc.sf.net |