A little bit of tweakery so that the invocation director to use

is known by any invocation marshaller, and so the client does
not need to be passed in.

Just here on the actionscript side for now, but this change may
make its way to Java.

Other changes may follow...


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5904 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2009-08-13 06:17:28 +00:00
parent 505a9c3a53
commit fe3d89132d
4 changed files with 27 additions and 11 deletions
@@ -61,7 +61,7 @@ public class Communicator
_outBuffer = new ByteArray();
_outBuffer.endian = Endian.BIG_ENDIAN;
_outStream = new ObjectOutputStream(_outBuffer);
_inStream = new ObjectInputStream();
_inStream = new ObjectInputStream(null, { invDir: _client.getInvocationDirector() });
attemptLogon(0);
}