Modified authentication process such that an authenticator thread is no

longer maintained. Implementations can choose to create their own
authentication thread if they wish or use some existing combination of the
invoker and dobjmgr threads. Also added an invoker to the base server
class.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1085 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-03-05 03:19:18 +00:00
parent 7dc7545541
commit 38ca708a4f
7 changed files with 104 additions and 174 deletions
@@ -1,5 +1,5 @@
//
// $Id: WhirledServer.java,v 1.11 2001/12/16 05:39:16 mdb Exp $
// $Id: WhirledServer.java,v 1.12 2002/03/05 03:19:18 mdb Exp $
package com.threerings.whirled.server;
@@ -7,7 +7,6 @@ import com.samskivert.jdbc.ConnectionProvider;
import com.samskivert.jdbc.StaticConnectionProvider;
import com.samskivert.util.Config;
import com.threerings.presents.util.Invoker;
import com.threerings.crowd.server.CrowdServer;
import com.threerings.whirled.Log;
@@ -29,9 +28,6 @@ public class WhirledServer extends CrowdServer
/** The scene registry. */
public static SceneRegistry screg;
/** A thread on which we can do things like repository lookups. */
public static Invoker invoker;
/**
* Initializes all of the server services and prepares for operation.
*/
@@ -47,10 +43,6 @@ public class WhirledServer extends CrowdServer
// configure the client to use our whirled client
clmgr.setClientClass(WhirledClient.class);
// create and start up our invoker
invoker = new Invoker();
invoker.start();
// create our connection provider
conprov = createConnectionProvider(config);