Crowd peer services now forward broadcasts as well as tells. We must get the

word to the people, all the people.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4816 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2007-08-16 22:38:40 +00:00
parent 3204cc6266
commit d92f81af78
6 changed files with 83 additions and 28 deletions
@@ -35,9 +35,15 @@ import com.threerings.crowd.chat.data.UserMessage;
public interface CrowdPeerService extends InvocationService
{
/**
* Used to forward a tell request to the server on which the destination
* user actually occupies.
* Used to forward a tell request to the server on which the destination user actually
* occupies.
*/
public void deliverTell (Client client, UserMessage message, Name target,
ChatService.TellListener listener);
/**
* Dispatches a broadcast message on this peer.
*/
public void deliverBroadcast (
Client client, Name from, String bundle, String msg, boolean attention);
}