Utilities/BackgroundService.py

changeset 5726
e1dbd217214a
parent 5691
372ac1c1c228
child 5741
ece3c72a24c3
diff -r 671561c52802 -r e1dbd217214a Utilities/BackgroundService.py
--- 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)

eric ide

mercurial