e54a4d41f4
method invocation services and converted everything to the new style. Could this be my biggest checkin ever? git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1642 542714f4-19e9-0310-aa3c-eee0fc999fb1
28 lines
961 B
Java
28 lines
961 B
Java
//
|
|
// $Id: SpeakService.java,v 1.1 2002/08/14 19:07:49 mdb Exp $
|
|
|
|
package com.threerings.crowd.chat;
|
|
|
|
import com.threerings.presents.client.Client;
|
|
import com.threerings.presents.client.InvocationService;
|
|
|
|
/**
|
|
* Provides a means by which "speaking" can be allowed among subscribers
|
|
* of a particular distributed object.
|
|
*/
|
|
public interface SpeakService extends InvocationService
|
|
{
|
|
/**
|
|
* Issues a request to speak "on" the distributed object via which
|
|
* this speak service was provided.
|
|
*
|
|
* @param message the message to be spoken.
|
|
* @param mode the "mode" of the message. This is an opaque value that
|
|
* will be passed back down via the {@link ChatDirector} to the {@link
|
|
* ChatDisplay} implementations which can interpret it in an
|
|
* application specific manner. It's useful for differentiating
|
|
* between regular speech, emotes, etc.
|
|
*/
|
|
public void speak (Client client, String message, byte mode);
|
|
}
|