iblqt.core.WorkerSignals
- class iblqt.core.WorkerSignals[source]
Bases:
QObject
Signals used by the
Worker
class to communicate with the main thread.- error(tuple)
Emitted when an error occurs. The signal carries a tuple with the exception type, exception value, and the formatted traceback.
- finished
Emitted when the worker has finished its task.
- progress(int)
Emitted to report progress during the task. The signal carries an integer value.
- result(object)
Emitted when the worker has successfully completed its task. The signal carries the result of the task.