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

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


     * Initialize the map by reading in all the keys. This method blocks
     * until the server has sent us the keys for this map.
     */
    private void doInit() {
        try {
            ResponseMessage rm = channel.sendAndWait(new MapRequestMessage(getName()));
            if (rm instanceof MapResponseMessage) {
                MapResponseMessage mrm = (MapResponseMessage) rm;
                backing.initialize(mrm.getVersion(), mrm.getKeys());
            } else {
                throw new IllegalStateException("Bad response to map request: " +
View Full Code Here

TOP

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

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.