Match some name changes made to the actionscript narya library.
git-svn-id: svn+ssh://src.earth.threerings.net/vilya/trunk@23 c613c5cb-e716-0410-b11b-feb51c14d237
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
package com.threerings.whirled.client {
|
||||
|
||||
import com.threerings.presents.client.InvocationListener;
|
||||
import com.threerings.presents.client.InvocationService_InvocationListener;
|
||||
|
||||
import com.threerings.io.TypedArray;
|
||||
|
||||
@@ -12,7 +12,8 @@ import com.threerings.whirled.data.SceneUpdate;
|
||||
/**
|
||||
* Used to communicate the response to a {@link #moveTo} request.
|
||||
*/
|
||||
public interface SceneService_SceneMoveListener extends InvocationListener
|
||||
public interface SceneService_SceneMoveListener
|
||||
extends InvocationService_InvocationListener
|
||||
{
|
||||
/**
|
||||
* Indicates that a move succeeded.
|
||||
|
||||
@@ -27,7 +27,6 @@ import com.threerings.presents.client.BasicDirector;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.ClientEvent;
|
||||
import com.threerings.presents.client.ConfirmAdapter;
|
||||
import com.threerings.presents.client.ConfirmListener;
|
||||
import com.threerings.presents.data.ClientObject;
|
||||
import com.threerings.presents.dobj.AttributeChangeListener;
|
||||
import com.threerings.presents.dobj.AttributeChangedEvent;
|
||||
|
||||
@@ -22,8 +22,8 @@
|
||||
package com.threerings.whirled.spot.client {
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.ConfirmListener;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.client.InvocationService_ConfirmListener;
|
||||
|
||||
import com.threerings.whirled.client.SceneService_SceneMoveListener;
|
||||
import com.threerings.whirled.spot.data.Location;
|
||||
@@ -59,7 +59,7 @@ public interface SpotService extends InvocationService
|
||||
*/
|
||||
function changeLocation (
|
||||
client :Client, sceneId :int, loc :Location,
|
||||
listener :ConfirmListener) :void;
|
||||
listener :InvocationService_ConfirmListener) :void;
|
||||
|
||||
/**
|
||||
* Requests that this client start or join the specified cluster. They
|
||||
@@ -71,7 +71,8 @@ public interface SpotService extends InvocationService
|
||||
* if they are not already in one.
|
||||
*/
|
||||
function joinCluster (
|
||||
client :Client, friendOid :int, listener :ConfirmListener) :void;
|
||||
client :Client, friendOid :int,
|
||||
listener :InvocationService_ConfirmListener) :void;
|
||||
|
||||
/**
|
||||
* Requests that the supplied message be delivered to listeners in the
|
||||
|
||||
@@ -26,7 +26,7 @@ import com.threerings.util.Integer;
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.client.ConfirmListener;
|
||||
import com.threerings.presents.client.InvocationService_ConfirmListener;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import com.threerings.presents.data.InvocationMarshaller_ConfirmMarshaller;
|
||||
import com.threerings.presents.dobj.InvocationResponseEvent;
|
||||
@@ -50,7 +50,7 @@ public class SpotMarshaller extends InvocationMarshaller
|
||||
public static const CHANGE_LOCATION :int = 1;
|
||||
|
||||
// documentation inherited from interface
|
||||
public function changeLocation (arg1 :Client, arg2 :int, arg3 :Location, arg4 :ConfirmListener) :void
|
||||
public function changeLocation (arg1 :Client, arg2 :int, arg3 :Location, arg4 :InvocationService_ConfirmListener) :void
|
||||
{
|
||||
var listener4 :InvocationMarshaller_ConfirmMarshaller = new InvocationMarshaller_ConfirmMarshaller();
|
||||
listener4.listener = arg4;
|
||||
@@ -74,7 +74,7 @@ public class SpotMarshaller extends InvocationMarshaller
|
||||
public static const JOIN_CLUSTER :int = 3;
|
||||
|
||||
// documentation inherited from interface
|
||||
public function joinCluster (arg1 :Client, arg2 :int, arg3 :ConfirmListener) :void
|
||||
public function joinCluster (arg1 :Client, arg2 :int, arg3 :InvocationService_ConfirmListener) :void
|
||||
{
|
||||
var listener3 :InvocationMarshaller_ConfirmMarshaller = new InvocationMarshaller_ConfirmMarshaller();
|
||||
listener3.listener = arg3;
|
||||
|
||||
Reference in New Issue
Block a user