Index of the louie module
-
m
louie
...
- m version ... - Louie version information.
-
m
saferef
...
- Refactored 'safe reference from dispatcher.py
-
C
BoundMethodWeakref
...
- 'Safe' and reusable weak references to instance methods.
- f __nonzero__ ... - Whether we are still a valid reference.
- f __cmp__ ... - Compare with another reference.
- f calculate_key ... - Calculate the reference key for this reference.
- f __call__ ... - Return a strong reference to the bound method.
- f __init__ ... - Return a weak-reference-like instance for a bound method.
- f safe_ref ... - Return a safe weak reference to a callable target.
-
C
BoundMethodWeakref
...
- 'Safe' and reusable weak references to instance methods.
-
m
dispatcher
...
- Multiple-producer-multiple-consumer signal-dispatching.
- a sends ...
- a connections ...
- a plugins ...
- a senders ...
- a senders_back ...
- a WEAKREF_TYPES ...
- f send_exact ... - Send signal only to receivers registered for exact message.
- f connect ... - Connect receiver to sender for signal.
- f get_receivers ... - Get list of receivers from global tables.
- f send_robust ... - Send signal from sender to all connected receivers catching errors
- f disconnect ... - Disconnect receiver from sender for signal.
- f print_stats ...
- f send ... - Send signal from sender to all connected receivers.
- f send_minimal ... - Like send, but does not attach signal and sender arguments to the call to the receiver.
- f live_receivers ... - Filter sequence of receivers to get resolved, live receivers.
- f get_all_receivers ... - Get list of all receivers from global tables.
- f reset ... - Reset the state of Louie.
- m sender ... - Sender classes.
-
m
plugin
...
- Common plugins for Louie.
-
C
Plugin
...
- Base class for Louie plugins.
- f wrap_receiver ... - Return a callable that passes arguments to the receiver.
- f is_live ... - Return True if the receiver is still live.
- C TwistedDispatchPlugin ... - Plugin for Louie that wraps all receivers in callables that return Twisted Deferred objects.
- C QtWidgetPlugin ... - A Plugin for Louie that knows how to handle Qt widgets when using PyQt built with SIP 4 or higher.
- f remove_plugin ...
- f install_plugin ...
-
C
Plugin
...
- Base class for Louie plugins.
- m signal ... - Signal class.
-
m
error
...
- Error types for Louie.
-
C
DispatcherTypeError
...
- Error raised when inappropriate signal-type specified (None)
-
C
DispatcherKeyError
...
- Error raised when unknown (sender, signal) specified
-
C
LouieError
...
- Base class for all Louie errors
-
C
DispatcherError
...
- Base class for all Dispatcher errors
-
C
PluginTypeError
...
- Error raise when trying to install more than one plugin of a
certain type.
-
C
DispatcherTypeError
...
- Error raised when inappropriate signal-type specified (None)
-
m
robustapply
...
- Robust apply mechanism.
- f function ... - Get function-like callable object for given receiver.
- f robust_apply ... - Call receiver with arguments and appropriate subset of named. signature is the callable used to determine the call signature of the receiver, in case receiver is a callable wrapper of the actual receiver.