Inherited by objects.logic.entity.entityManager.entityManager, and objects.storage.storageManager.storageManager.
Public Member Functions | |
| def | update |
| process notification from Subject implementation. | |
It enforces a method called "update" Note that since Python does not really support interfaces, this is really just an experiment. Note how all functions simply raise a "not implemented" exception.
Definition at line 23 of file observerInterface.py.
| def objects.logic.common.observerInterface.observerInterface.update | ( | self, | ||
| header, | ||||
| data | ||||
| ) |
process notification from Subject implementation.
| header | Raw DataLink header | |
| data | Raw DataLink frame |
Reimplemented in objects.logic.entity.entityManager.entityManager, and objects.storage.storageManager.storageManager.
Definition at line 28 of file observerInterface.py.
00028 : raise exception("not implemented", True) 00029 raise exception("not implemented", True)
1.5.8