Package com.threerings.presents.client.InvocationService

Examples of com.threerings.presents.client.InvocationService.ConfirmListener


        int sceneId = _scdir.getScene().getId();
        log.info("Sending changeLocation request", "scid", sceneId, "loc", loc);

        _pendingLoc = loc.clone();
        ConfirmListener clist = new ConfirmListener() {
            public void requestProcessed () {
                _location = _pendingLoc;
                _pendingLoc = null;
                if (listener != null) {
                    listener.requestCompleted(_location);
View Full Code Here


            return;
        }

        log.info("Joining cluster", "friend", froid);

        _sservice.joinCluster(froid, new ConfirmListener() {
            public void requestProcessed () {
                if (listener != null) {
                    listener.requestCompleted(null);
                }
            }
View Full Code Here

TOP

Related Classes of com.threerings.presents.client.InvocationService.ConfirmListener

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.