Examples of ModifyObjectsUpdate


Examples of com.threerings.stage.data.ModifyObjectsUpdate

            return false;
        }

        // create our scene update which will be stored in the database
        // and used to efficiently update clients
        final ModifyObjectsUpdate update = new ModifyObjectsUpdate();
        update.init(_sscene.getId(), _sscene.getVersion(),
            new ObjectInfo[] { info }, killOverlap ? lappers : null);

        log.info("Modifying objects '" + update + ".");
        recordUpdate(update, true);
View Full Code Here

Examples of com.threerings.stage.data.ModifyObjectsUpdate

    {
        InvocationException.requireAccess(caller, StageCodes.MODIFY_SCENE_ACCESS, _sscene);

        // create our scene update which will be stored in the database
        // and used to efficiently update clients
        ModifyObjectsUpdate update = new ModifyObjectsUpdate();
        update.init(_sscene.getId(), _sscene.getVersion(), null, info);

        log.info("Modifying objects '" + update + ".");
        recordUpdate(update, true);

        listener.requestProcessed();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.