responseTable.put(/* requestId */idd, message);
IDebugRequestMessage req = (IDebugRequestMessage) requestsTable
.remove(idd); // find the request.
if (req != null) {
synchronized (req) {
req.notifyAll(); // Notify the response
// is here.
}
} else {
// Remove this message.
responseTable.remove(idd);