Provide the option to deliver listener body oids or usernames.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2656 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-06-14 00:59:24 +00:00
parent f1ac86936e
commit 1523629ef6
2 changed files with 10 additions and 2 deletions
@@ -1,5 +1,5 @@
//
// $Id: SpeakObject.java,v 1.1 2003/06/14 00:47:16 mdb Exp $
// $Id: SpeakObject.java,v 1.2 2003/06/14 00:59:24 mdb Exp $
package com.threerings.crowd.chat.data;
@@ -13,7 +13,11 @@ public interface SpeakObject
/** Used in conjunction with {@link #applyToListeners}. */
public static interface ListenerOp
{
/** Call this method if you only have access to body oids. */
public void apply (int bodyOid);
/** Call this method if you can provide usernames directly. */
public void apply (String username);
}
/**
@@ -1,5 +1,5 @@
//
// $Id: SpeakProvider.java,v 1.8 2003/06/14 00:55:19 mdb Exp $
// $Id: SpeakProvider.java,v 1.9 2003/06/14 00:59:24 mdb Exp $
package com.threerings.crowd.chat.server;
@@ -292,6 +292,10 @@ public class SpeakProvider
noteMessage(((BodyObject)dobj).username, message);
}
}
public void apply (String username) {
noteMessage(username, message);
}
}
/** Our speech object. */