Package org.rlcommunity.rlglue.codec.network

Examples of org.rlcommunity.rlglue.codec.network.ClientAgent


        String ImplementationVersion = RLGlueCore.getImplementationVersion();
        String SpecVersion = RLGlueCore.getSpecVersion();

        System.out.println("RL-Glue Java Agent Codec Version: " + SpecVersion + " (" + ImplementationVersion + ")");
        System.out.println("\tConnecting to " + host + " on port " + port + "...");
        theClient = new ClientAgent(theAgent);

        try {
            theClient.connect(host, port, Network.kRetryTimeout);
            System.out.println("\tAgent Codec Connected");
            theClient.runAgentEventLoop();
View Full Code Here

TOP

Related Classes of org.rlcommunity.rlglue.codec.network.ClientAgent

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.