Package org.jdesktop.wonderland.modules.sharedstate.common.messages

Examples of org.jdesktop.wonderland.modules.sharedstate.common.messages.GetRequestMessage


        public ValueGetter(String propName) {
            this.propName = propName;
        }

        public VersionedValue call() throws InterruptedException {
            CellMessage m = new GetRequestMessage(getName(), propName);
            ResponseMessage rm = channel.sendAndWait(m);
            if (rm instanceof GetResponseMessage) {
                GetResponseMessage grm = (GetResponseMessage) rm;
                return new ImmediateVersionedValue(VersionType.REMOTE,
                                                   grm.getVersion(), grm.getData());
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.sharedstate.common.messages.GetRequestMessage

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.