--- a/Utilities/BackgroundService.py Fri May 05 19:05:26 2017 +0200 +++ b/Utilities/BackgroundService.py Fri May 05 19:06:52 2017 +0200 @@ -32,6 +32,12 @@ class BackgroundService(QTcpServer): """ Class implementing the main part of the background service. + + @signal serviceNotAvailable(function, language, filename, message) + emitted to indicate the non-availability of a service function + (str, str, str, str) + @signal batchJobDone(function, language) emitted to indicate the end of + a batch job (str, str) """ serviceNotAvailable = pyqtSignal(str, str, str, str) batchJobDone = pyqtSignal(str, str)