The basis for logging all recent chat on the server. Now I have to make

every type of chat object known to man capable of reporting who's
listening.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2653 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-06-14 00:47:16 +00:00
parent 7d98a59c1c
commit e6dc5c38d7
4 changed files with 159 additions and 10 deletions
@@ -0,0 +1,25 @@
//
// $Id: SpeakObject.java,v 1.1 2003/06/14 00:47:16 mdb Exp $
package com.threerings.crowd.chat.data;
/**
* Provides a mechanism by which the speak service can identify chat
* listeners so as to maintain a recent history of all chat traffic on the
* server.
*/
public interface SpeakObject
{
/** Used in conjunction with {@link #applyToListeners}. */
public static interface ListenerOp
{
public void apply (int bodyOid);
}
/**
* The speak service will call this every time a chat message is
* delivered on this speak object to note the listeners that
* received the message.
*/
public void applyToListeners (ListenerOp op);
}