_Framework.Signal (runtime)¶
Live 12 — Live Object Model & framework reference (descriptions and signatures).
Functions¶
default_combiner(results)¶
find_if(predicate, seq)¶
nop(*a, **k)¶
short_circuit_combiner(slot_results)¶
short_circuit_signal(sender=None, *a, **k)¶
partial(func, args, *keywords) - new function with partial application of the given arguments and keywords.
Classes¶
class IdentifyingSlot(Slot)¶
Methods¶
__call__(self, *a, **k)¶
Call self as a function.
__init__(self, sender=None, *a, **k)¶
Initialize self. See help(type(self)) for accurate signature.
class Signal¶
Properties¶
count
Methods¶
__call__(self, *a, **k)¶
Call self as a function.
__init__(self, combiner=<function default_combiner at 0x129dd59e0>, sender=None, *a, **k)¶
Initialize self. See help(type(self)) for accurate signature.
connect(self, slot, in_front=False, sender=None)¶
disconnect(self, slot)¶
disconnect_all(self)¶
is_connected(self, slot)¶
class Slot¶
Methods¶
__call__(self, *a, **k)¶
Call self as a function.
__init__(self, callback=None, *a, **k)¶
Initialize self. See help(type(self)) for accurate signature.
class partial¶
partial(func, args, *keywords) - new function with partial application of the given arguments and keywords.
Methods¶
__call__(self, /, *args, **kwargs)¶
Call self as a function.
__init__(self, /, *args, **kwargs)¶
Initialize self. See help(type(self)) for accurate signature.
Attributes¶
args=<member 'args' of 'functools.partial' objects>- tuple of arguments to future partial callsfunc=<member 'func' of 'functools.partial' objects>- function object to use in future partial callskeywords=<member 'keywords' of 'functools.partial' objects>- dictionary of keyword arguments to future partial calls