Package client.Network

Examples of client.Network.CTC_ServerSocket


   
      _networkThread = new Thread(_serverConnection);         
      _networkThread.start()
     
      // connection to other clients
      _clientsConnection = new CTC_ServerSocket();
      _clientsConnection.registerMsgReceivedEvent(this);
      _clientsConnection.registerClientDisconnectEvent(this);
      _clientsThread = new Thread(_clientsConnection);         
      _clientsThread.start()
     
View Full Code Here

TOP

Related Classes of client.Network.CTC_ServerSocket

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.