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:
@@ -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;
|
package com.threerings.crowd.chat.data;
|
||||||
|
|
||||||
@@ -13,7 +13,11 @@ public interface SpeakObject
|
|||||||
/** Used in conjunction with {@link #applyToListeners}. */
|
/** Used in conjunction with {@link #applyToListeners}. */
|
||||||
public static interface ListenerOp
|
public static interface ListenerOp
|
||||||
{
|
{
|
||||||
|
/** Call this method if you only have access to body oids. */
|
||||||
public void apply (int bodyOid);
|
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;
|
package com.threerings.crowd.chat.server;
|
||||||
|
|
||||||
@@ -292,6 +292,10 @@ public class SpeakProvider
|
|||||||
noteMessage(((BodyObject)dobj).username, message);
|
noteMessage(((BodyObject)dobj).username, message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void apply (String username) {
|
||||||
|
noteMessage(username, message);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Our speech object. */
|
/** Our speech object. */
|
||||||
|
|||||||
Reference in New Issue
Block a user