131415161718192021
return instance; } public int start(int port) { SRH srh = new SRH(port); ListeningThread thread = new ListeningThread(srh); thread.start(); return srh.getPort(); }
8485868788899091
return result; } public void start(int port) { SRH srh = new SRH(port); ListeningThread thread = new ListeningThread(srh); thread.start(); }