Package com.threerings.whirled.util

Examples of com.threerings.whirled.util.UpdateList


        if (!_updates.validate(scene.getVersion())) {
            log.warning("Provided with invalid updates; flushing [where=" + where() +
                        ", sceneId=" + scene.getId() + ", version=" + scene.getVersion() + "].");
            // clear out the update list as it will not allow us to bring clients up to date with
            // our current scene version; instead they'll have to download the whole thing
            _updates = new UpdateList();
        }

        // let derived classes react to the receipt of scene data
        gotSceneData(extras);
    }
View Full Code Here


    // documentation inherited from interface
    public UpdateList loadUpdates (int sceneId)
        throws PersistenceException
    {
        return new UpdateList();
    }
View Full Code Here

TOP

Related Classes of com.threerings.whirled.util.UpdateList

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.