public void onDebuggeeProcess()

in plugin/src/main/java/com/attachme/plugin/AttachmeRunner.java [61:68]


  public void onDebuggeeProcess(ProcessRegisterMsg msg, String debuggeeAddress) {
    if (msg.getPorts().isEmpty()) {
      procHandler.notifyTextAvailable("Received message with no ports", ProcessOutputType.STDERR);
      return;
    }
    RemoteConnection config = new RemoteConnection(true, debuggeeAddress, msg.getPorts().get(0) + "", false);
    AttachmeDebugger.attach(project, config, msg.getPid());
  }