Prefer Executor over RunQueue...

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6001 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2009-12-08 19:05:06 +00:00
parent f546167ca7
commit fc77b1bb0b
3 changed files with 17 additions and 3 deletions
@@ -21,6 +21,8 @@
package com.threerings.presents.server;
import java.util.concurrent.Executor;
import com.google.inject.Inject;
import com.google.inject.Singleton;
@@ -34,7 +36,7 @@ public class PresentsAuthInvoker extends ReportingInvoker
{
@Inject public PresentsAuthInvoker (PresentsDObjectMgr omgr, ReportManager repmgr)
{
super("presents.AuthInvoker", omgr, repmgr);
super("presents.AuthInvoker", (Executor)omgr, repmgr);
setDaemon(true);
}
}