Package org.jdesktop.wonderland.server.comms

Examples of org.jdesktop.wonderland.server.comms.CommunicationsProtocol


    public static class CheckProtocolTask implements Task, Serializable {
        public void run() throws Exception {
            logger.info("Run check protocol task");
           
            CommsManager cm = WonderlandContext.getCommsManager();
            CommunicationsProtocol cp = cm.getProtocol(TestProtocolVersion.PROTOCOL_NAME);
           
            assert cp != null;
            assert cp.getName().equals(TestProtocolVersion.PROTOCOL_NAME);
            assert cp.getVersion().equals(TestProtocolVersion.VERSION);
        }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.server.comms.CommunicationsProtocol

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.