Package net.sf.nebulacards.comm

Examples of net.sf.nebulacards.comm.CommThread


    try {
      Socket syncSock;
      syncSock = new Socket(hostString, port);
      if (VERBOSE)
        System.out.println("Connected on port " + syncSock.getPort());
      com = new CommThread(syncSock, 0);
      com.addPacketListener(this);
      com.start();
    } catch (Exception e) {
      System.err.println("Fatal Error while connecting to server:");
      System.err.println(e.getMessage());
View Full Code Here

TOP

Related Classes of net.sf.nebulacards.comm.CommThread

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.