Implemented object destruction; wired up some missing stuff; created a
test server to make some testing easier; various other cleanups. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@188 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
//
|
||||
// $Id: DObject.java,v 1.19 2001/08/04 00:39:44 mdb Exp $
|
||||
// $Id: DObject.java,v 1.20 2001/08/07 20:38:58 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.dobj;
|
||||
|
||||
@@ -233,6 +233,16 @@ public class DObject
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Requests that this distributed object be destroyed. It does so by
|
||||
* queueing up an object destroyed event which the server will
|
||||
* validate and process.
|
||||
*/
|
||||
public void destroy ()
|
||||
{
|
||||
_mgr.postEvent(new ObjectDestroyedEvent(_oid));
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks to ensure that the specified subscriber has access to this
|
||||
* object. This will be called before satisfying a subscription
|
||||
|
||||
Reference in New Issue
Block a user