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. |
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. |
Home | Trees | Index | Help |
|
---|
Generated by Epydoc 2.1.20050511.rpd on Mon Feb 16 12:53:20 2009 | http://epydoc.sf.net |