Observes an Event for new data (e.g. new punches).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
__init__(self,
store,
interval=5,
rollback=True)
x.__init__(...) initializes x; see help(type(x)) for signature |
source code
|
|
|
|
|
|
|
|
|
|
register(self,
obj,
observable)
Register an object to be notified of changes of type event. |
source code
|
|
|
|
unregister(self,
obj,
observable)
Unregister an object from this observer for this observable. |
source code
|
|
|
|
|
|
|
|
|
|
_notify(self,
observable)
Notifies objects of an event. |
source code
|
|
|
Inherited from object:
__delattr__,
__format__,
__getattribute__,
__hash__,
__new__,
__reduce__,
__reduce_ex__,
__repr__,
__setattr__,
__sizeof__,
__str__,
__subclasshook__
|