Renamed the InvocationListeners to the standard way I've been naming
inner classes over here on the actionscript side. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4265 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -24,8 +24,8 @@ package com.threerings.crowd.chat.client {
|
||||
import com.threerings.util.Name;
|
||||
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationListener;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.client.InvocationService_InvocationListener;
|
||||
|
||||
/**
|
||||
* The chat services provide a mechanism by which the client can broadcast
|
||||
@@ -58,7 +58,7 @@ public interface ChatService extends InvocationService
|
||||
* @param listener the reference that will receive a failure response.
|
||||
*/
|
||||
function broadcast (
|
||||
client :Client, message :String, listener :InvocationListener) :void;
|
||||
client :Client, message :String, listener :InvocationService_InvocationListener) :void;
|
||||
|
||||
/**
|
||||
* Sets this client's away message. If the message is null or the
|
||||
|
||||
@@ -2,9 +2,9 @@ package com.threerings.crowd.chat.client {
|
||||
|
||||
import com.threerings.util.Long;
|
||||
|
||||
import com.threerings.presents.client.InvocationListener
|
||||
import com.threerings.presents.client.InvocationService_InvocationListener
|
||||
|
||||
public interface TellListener extends InvocationListener
|
||||
public interface TellListener extends InvocationService_InvocationListener
|
||||
{
|
||||
function tellSucceeded (idleTime :Long, awayMessage :String) :void;
|
||||
}
|
||||
|
||||
@@ -25,7 +25,7 @@ import com.threerings.crowd.chat.client.ChatService;
|
||||
import com.threerings.crowd.chat.client.TellListener;
|
||||
import com.threerings.presents.client.Client;
|
||||
import com.threerings.presents.client.InvocationService;
|
||||
import com.threerings.presents.client.InvocationListener;
|
||||
import com.threerings.presents.client.InvocationService_InvocationListener;
|
||||
import com.threerings.presents.data.InvocationMarshaller;
|
||||
import com.threerings.presents.data.InvocationMarshaller_ListenerMarshaller;
|
||||
import com.threerings.presents.dobj.InvocationResponseEvent;
|
||||
@@ -54,7 +54,7 @@ public class ChatMarshaller extends InvocationMarshaller
|
||||
public static const BROADCAST :int = 2;
|
||||
|
||||
// documentation inherited from interface
|
||||
public function broadcast (arg1 :Client, arg2 :String, arg3 :InvocationListener) :void
|
||||
public function broadcast (arg1 :Client, arg2 :String, arg3 :InvocationService_InvocationListener) :void
|
||||
{
|
||||
var listener3 :InvocationMarshaller_ListenerMarshaller = new InvocationMarshaller_ListenerMarshaller();
|
||||
listener3.listener = arg3;
|
||||
|
||||
Reference in New Issue
Block a user