synchronized su awarenes e chat via tcp

This commit is contained in:
2014-12-02 21:50:57 +01:00
parent 1ef2207245
commit 40a630623a
7 changed files with 296 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
package socket_chat_tcp;
/**
* Created with xgiovio.macbookair.
* User: xgiovio
* Date: 02/12/14
* Time: 17:28
*/
public class LaunchClient {
public static void main (String[] args) {
Client c1 = new Client("mario","localhost",20000);
c1.launch();
}
}