More work on invocation manager; modified startup sequence so that server
can get shit together before bootstrapping the client. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@68 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
//
|
||||
// $Id: BootstrapData.java,v 1.1 2001/07/19 07:09:16 mdb Exp $
|
||||
|
||||
package com.threerings.cocktail.cher.net;
|
||||
|
||||
import com.threerings.cocktail.cher.dobj.DObject;
|
||||
|
||||
/**
|
||||
* An <code>BootstrapData</code> object is communicated back to the client
|
||||
* after authentication has succeeded and after the server is fully
|
||||
* prepared to deal with the client. It contains information the client
|
||||
* will need to interact with the server.
|
||||
*/
|
||||
public class BootstrapData extends DObject
|
||||
{
|
||||
/** The oid of this client's associated distributed object. */
|
||||
public int clientOid;
|
||||
|
||||
/** The oid to which to send invocation requests. */
|
||||
public int invOid;
|
||||
|
||||
public String toString ()
|
||||
{
|
||||
return "[clientOid=" + clientOid + ", invOid=" + invOid + "]";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user