Package aibo.dataserver

Examples of aibo.dataserver.DataServer


            try {
                int listenPort = Integer.parseInt(Configuration.get("data_server.listen_port"));
                String listenAddress = Configuration.get("data_server.listen_ip");
                boolean isDebug = Configuration.getBoolean("network.debug");

                new Thread(new DataServer(listenAddress, listenPort, this.taskManager, isDebug)).start();
            } catch (NumberFormatException e) {
                e.printStackTrace();
            }
        }
    }
View Full Code Here

TOP

Related Classes of aibo.dataserver.DataServer

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.