src/eric7/RemoteServerInterface/EricServerDebuggerInterface.py

branch
server
changeset 10574
622e59b51640
parent 10563
b4b47c1a02ba
child 10636
24d9e6ff8111
equal deleted inserted replaced
10573:c4f503f40caf 10574:622e59b51640
17 17
18 # TODO: sanitize all file names with FileSystemUtilities.plainFileName() 18 # TODO: sanitize all file names with FileSystemUtilities.plainFileName()
19 class EricServerDebuggerInterface(QObject): 19 class EricServerDebuggerInterface(QObject):
20 """ 20 """
21 Class implementing the file system interface to the eric-ide server. 21 Class implementing the file system interface to the eric-ide server.
22
23 @signal debugClientResponse(response:str) emitted to relay a response of
24 the remote debug client
25 @signal debugClientDisconnected(debuggerId:str) emitted when a remote debug
26 client did disconnect from the eric-ide server
27 @signal lastClientExited() emitted to indicate that the last debug client of
28 the eric-ide server exited
22 """ 29 """
23 30
24 debugClientResponse = pyqtSignal(str) 31 debugClientResponse = pyqtSignal(str)
25 debugClientDisconnected = pyqtSignal(str) 32 debugClientDisconnected = pyqtSignal(str)
26 lastClientExited = pyqtSignal() 33 lastClientExited = pyqtSignal()

eric ide

mercurial