Displaying 1 result from an estimated 1 matches for "debuggerclient".
2006 Nov 03
6
How to send data,
...up 2 connections, which works.
I had to place them in a Thread, because the gui obviously
has to resume during the event loop of EventMachine.
When the other app that has the debugger server gets to
a breakpoint, it sends data to the client.
This works as it should, the receive_data method of
the DebuggerClient module gets called and sends
the data to the received_client_data method of the Controller class.
This method then assigns the data to the gui.
So far so good....
However, sending data back to the debugger is a problem.
What happens is this; the gui calls the send_client_command method
of the Cont...