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:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user