Added unregisterReceiver().

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@650 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-11-27 21:37:58 +00:00
parent dcc1671b9e
commit f506a686f9
@@ -1,5 +1,5 @@
//
// $Id: InvocationDirector.java,v 1.15 2001/10/12 20:26:00 mdb Exp $
// $Id: InvocationDirector.java,v 1.16 2001/11/27 21:37:58 mdb Exp $
package com.threerings.presents.client;
@@ -121,6 +121,16 @@ public class InvocationDirector
_receivers.put(module, receiver);
}
/**
* Removes the registration for the supplied invocation receiver
* instance as the handler for invocation notifications for the
* specified module.
*/
public void unregisterReceiver (String module)
{
_receivers.remove(module);
}
// documentation inherited
public void objectAvailable (DObject object)
{