first pass at converting the bureau client to actionscript. now to find a way to run it...

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5054 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Jamie Doornbos
2008-05-08 23:01:46 +00:00
parent 18d4136e3a
commit bc35598a2e
16 changed files with 970 additions and 2 deletions
@@ -22,7 +22,6 @@
package com.threerings.bureau.client;
import com.threerings.presents.client.Client;
import com.threerings.presents.net.Credentials;
import com.samskivert.util.RunQueue;
import com.threerings.bureau.data.BureauCredentials;
import com.threerings.bureau.util.BureauContext;
@@ -1,7 +1,6 @@
package com.threerings.bureau.client;
import com.threerings.presents.client.BasicDirector;
import com.threerings.presents.data.ClientObject;
import com.threerings.bureau.data.BureauCodes;
import com.samskivert.util.IntMap;
import com.samskivert.util.IntMaps;
@@ -50,6 +50,13 @@ public class BureauCredentials extends Credentials
super(new Name("@@bureau:" + bureauId + "@@"));
}
@Override // inherit documentation
protected void toString (StringBuilder buf)
{
super.toString(buf);
buf.append(" token=").append(sessionToken);
}
// inherit documentation - from Object
public String toString ()
{