Home | Trees | Index | Help |
|
---|
Package wx :: Package py :: Module dispatcher |
|
Provides global signal dispatching services.
Classes | |
---|---|
BoundMethodWeakref |
BoundMethodWeakref class. |
Parameter |
Used to represent default parameter values. |
Exceptions | |
---|---|
DispatcherError |
Function Summary | |
---|---|
Connect receiver to sender for signal. | |
Disconnect receiver from sender for signal. | |
Return a safe weak reference to a callable object. | |
Send signal from sender to all connected receivers. |
Variable Summary | |
---|---|
str |
__author__ = "Patrick K. O'Brien <pobrien@orbtech.com>"
|
str |
__cvsid__ = '$Id: dispatcher.py,v 1.6 2006/06/11 00:12:5...
|
str |
__revision__ = '1.6'
|
Anonymous |
Anonymous = Anonymous
|
Any |
Any = Any
|
dict |
connections = {}
|
dict |
senders = {}
|
Function Details |
---|
connect(receiver, signal=Any, sender=Any, weak=True)Connect receiver to sender for signal.
|
disconnect(receiver, signal=Any, sender=Any, weak=True)Disconnect receiver from sender for signal. Disconnecting is not required. The use of disconnect is the same as for connect, only in reverse. Think of it as undoing a previous connection. |
safeRef(object)Return a safe weak reference to a callable object. |
send(signal, sender=Anonymous, **kwds)Send signal from sender to all connected receivers. Return a list of tuple pairs [(receiver, response), ... ]. If sender is not specified, signal is sent anonymously. |
Variable Details |
---|
__author__
|
__cvsid__
|
__revision__
|
Anonymous
|
Any
|
connections
|
senders
|
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1.20050511.rpd on Thu Mar 22 12:10:40 2007 | http://epydoc.sf.net |