Worker Signals
@author: L. Calvo-Bartolome
- class src.graphical_user_interface.worker_signals.WorkerSignals
Bases:
QObject
Module that defines the signals that are available from a running worker thread, the supported signals being “finished” (there is no more data to process), “error”, “result” (object data returned from processing) and “progress” (a numerical indicator of the progress that has been achieved at a particular moment). It has been created based on the analogous class provided by: https://www.pythonguis.com/tutorials/multithreading-pyqt-applications-qthreadpool/