Progress on chat support.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@155 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-08-02 23:46:47 +00:00
parent 5b390ea2ec
commit 234432858c
3 changed files with 220 additions and 1 deletions
@@ -1,8 +1,24 @@
//
// $Id: ChatService.java,v 1.1 2001/07/20 20:07:37 mdb Exp $
// $Id: ChatService.java,v 1.2 2001/08/02 23:46:47 mdb Exp $
package com.threerings.cocktail.party.chat;
/**
* The chat services provide a mechanism by which the client can broadcast
* chat messages to all clients that are subscribed to a particular place
* object or directly to a particular client. These services should not be
* used directly, but instead should be accessed via the chat manager.
*
* @see ChatManager
*/
public class ChatService
{
/** The module name for the chat services. */
public static final String MODULE = "chat";
/** The message identifier for a speak request message. */
public static final String SPEAK_REQUEST = "spkreq";
/** The message identifier for a speak notification message. */
public static final String SPEAK_NOTIFICATION = "spknot";
}