meshroom.common.PySignal.Signal

Inheritance diagram of meshroom.common.PySignal.Signal
class meshroom.common.PySignal.Signal

The Signal is the core object that handles connection and emission .

__init__()

Methods

__init__()

block(isBlocked)

Sets blocking of the signal

clear()

Clears the signal of all connected slots

connect(slot)

Connects the signal to any callable object

disconnect(slot)

Disconnects the slot from the signal

emit(*args, **kwargs)

Calls all the connected slots with the provided args and kwargs unless block is activated

sender()

Return the callable responsible for emitting the signal, if found.