Did the refactoring necessary to get the client and server to live happily

together in one JVM and both interoperate with the AWT thread in a manner
so harmonious as to bring a tear to the eye. This was surprisingly much
easier that I expected, thanks to my eminently sensible initial design,
I'm sure. ;)


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3360 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2005-02-20 00:37:34 +00:00
parent 41fb0b1b80
commit 121f6d7e53
6 changed files with 172 additions and 95 deletions
@@ -184,7 +184,7 @@ public class ClientDObjectMgr
// do the proper thing depending on the object
if (obj instanceof BootstrapNotification) {
BootstrapData data = ((BootstrapNotification)obj).getData();
_client.gotBootstrap(data);
_client.gotBootstrap(data, this);
} else if (obj instanceof EventNotification) {
DEvent evt = ((EventNotification)obj).getEvent();