Revamped distributed object creation. There was no particular reason to create
distributed objects by reflection since we don't allow clients to create objects, furthermore we needn't do it asynchronously. The object creation methods were moved into the server-side only interface and made "immediate", so the caller creates a derived instance of DObject and registers it with the system instead of creating it with a Subscriber callback. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4342 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -20,13 +20,7 @@ public class JabberServer extends CrowdServer
|
||||
super.init();
|
||||
|
||||
// create a single location
|
||||
plreg.createPlace(
|
||||
new JabberConfig(), new PlaceRegistry.CreationObserver() {
|
||||
public void placeCreated (PlaceObject place, PlaceManager pmgr) {
|
||||
Log.info("Created chat room " + pmgr.where() + ".");
|
||||
_place = pmgr;
|
||||
}
|
||||
});
|
||||
_pmgr = plreg.createPlace(new JabberConfig());
|
||||
}
|
||||
|
||||
public static void main (String[] args)
|
||||
@@ -41,5 +35,5 @@ public class JabberServer extends CrowdServer
|
||||
}
|
||||
}
|
||||
|
||||
protected PlaceManager _place;
|
||||
protected PlaceManager _pmgr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user