Match change to ConfirmAdapter.

git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@45 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
Ray Greenwell
2006-08-19 01:05:32 +00:00
parent 81037188de
commit 5331407313
@@ -223,18 +223,18 @@ public class SpotSceneDirector extends BasicDirector
_pendingLoc = (loc.clone() as Location); _pendingLoc = (loc.clone() as Location);
var clist :ConfirmAdapter = new ConfirmAdapter( var clist :ConfirmAdapter = new ConfirmAdapter(
function (reason :String) :void {
_pendingLoc = null;
if (listener != null) {
listener.requestFailed(new Error(reason));
}
},
function () :void { function () :void {
_location = _pendingLoc; _location = _pendingLoc;
_pendingLoc = null; _pendingLoc = null;
if (listener != null) { if (listener != null) {
listener.requestCompleted(_location); listener.requestCompleted(_location);
} }
},
function (reason :String) :void {
_pendingLoc = null;
if (listener != null) {
listener.requestFailed(new Error(reason));
}
}); });
_sservice.changeLocation(_wctx.getClient(), sceneId, loc, clist); _sservice.changeLocation(_wctx.getClient(), sceneId, loc, clist);
} }
@@ -263,15 +263,15 @@ public class SpotSceneDirector extends BasicDirector
log.info("Joining cluster [friend=" + froid + "]."); log.info("Joining cluster [friend=" + froid + "].");
_sservice.joinCluster(_wctx.getClient(), froid, new ConfirmAdapter( _sservice.joinCluster(_wctx.getClient(), froid, new ConfirmAdapter(
function () :void {
if (listener != null) {
listener.requestCompleted(null);
}
},
function (reason :String) :void { function (reason :String) :void {
if (listener != null) { if (listener != null) {
listener.requestFailed(new Error(reason)); listener.requestFailed(new Error(reason));
} }
},
function () :void {
if (listener != null) {
listener.requestCompleted(null);
}
})); }));
} }