Initializing the invocation director reference on deserialization doesn't work

well in standalone mode.  We need a way to install a director on registration.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6413 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Andrzej Kapolka
2011-01-05 01:32:13 +00:00
parent 68aba0e92a
commit 0c28d31357
2 changed files with 19 additions and 3 deletions
@@ -214,10 +214,11 @@ public class InvocationMarshaller
* to operate in the wide world. This is called by the invocation manager when an invocation
* provider is registered and should not be called otherwise.
*/
public void init (int invOid, int invCode)
public void init (int invOid, int invCode, InvocationDirector invDir)
{
_invOid = invOid;
_invCode = invCode;
_invdir = invDir;
}
/**