pydi.callback | index /cygdrive/c/dev/workspace/pydi_open/src/pydi/callback.py |
Copyright (C) 2008 Eithon Cadag
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
callback.py - strictly-enforcing callback architecture
Eithon Cadag
Example usage:
caller = UpdateCallBackRegister()
obs = UpdateObserver()
caller.register(obs.update) # Note: passing the METHOD itself -- not the object! We need to
# declare what callbacks are acceptable to the register method for each class
# using the @regcallback(<ObserverClass>,"<observer_callback_method>") decorator.
# This is a STRICTLY-ENFORCING callback approach.
caller._notify(some_msg) # Actually would not be called by a third-party class, but internally; this calls the
# obs.update(some_msg) method.
Modules | ||||||
|
Classes | ||||||||||||||||||||||||||
|
Functions | ||
|