Added broadcast chat mechanism.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1875 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-10-31 23:27:16 +00:00
parent 35f3173694
commit dd4b1c69c3
6 changed files with 93 additions and 11 deletions
@@ -1,11 +1,12 @@
//
// $Id: ChatMarshaller.java,v 1.3 2002/10/30 01:47:12 ray Exp $
// $Id: ChatMarshaller.java,v 1.4 2002/10/31 23:27:16 mdb Exp $
package com.threerings.crowd.chat;
import com.threerings.crowd.chat.ChatService;
import com.threerings.crowd.chat.ChatService.TellListener;
import com.threerings.presents.client.Client;
import com.threerings.presents.client.InvocationService.InvocationListener;
import com.threerings.presents.data.InvocationMarshaller;
import com.threerings.presents.dobj.InvocationResponseEvent;
@@ -80,5 +81,18 @@ public class ChatMarshaller extends InvocationMarshaller
});
}
// Generated on 17:55:05 10/29/02.
/** The method id used to dispatch {@link #broadcast} requests. */
public static final int BROADCAST = 2;
// documentation inherited from interface
public void broadcast (Client arg1, String arg2, InvocationListener arg3)
{
ListenerMarshaller listener3 = new ListenerMarshaller();
listener3.listener = arg3;
sendRequest(arg1, BROADCAST, new Object[] {
arg2, listener3
});
}
// Generated on 13:40:31 10/31/02.
}