Have the invocation manager pass the client object back to the client when

it is ready. Then the client hangs on to it because the invocation manager
doesn't really need to hang on to the client object.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@288 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-08-21 19:33:06 +00:00
parent 59a6b2b723
commit 67a3dabac2
2 changed files with 9 additions and 15 deletions
@@ -1,5 +1,5 @@
//
// $Id: Client.java,v 1.12 2001/08/21 00:58:10 mdb Exp $
// $Id: Client.java,v 1.13 2001/08/21 19:33:06 mdb Exp $
package com.threerings.cocktail.cher.client;
@@ -174,7 +174,7 @@ public class Client
*/
public ClientObject getClientObject ()
{
return _invmgr.getClientObject();
return _clobj;
}
/**
@@ -286,14 +286,18 @@ public class Client
// client loose to do things like request invocation services
}
void invocationManagerReady ()
void invocationManagerReady (ClientObject clobj)
{
// keep this around
_clobj = clobj;
// let the client know that logon has now fully succeeded
notifyObservers(Client.CLIENT_DID_LOGON, null);
}
protected Credentials _creds;
protected Invoker _invoker;
protected ClientObject _clobj;
protected String _hostname;
protected int _port;