Share the Reporter implementation of PresentsInvoker so that the PresentsAuthInvoker is reported too.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5637 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -24,19 +24,17 @@ package com.threerings.presents.server;
|
||||
import com.google.inject.Inject;
|
||||
import com.google.inject.Singleton;
|
||||
|
||||
import com.samskivert.util.Invoker;
|
||||
|
||||
/**
|
||||
* A separate invoker thread on which we perform client authentication. This allows the normal
|
||||
* server operation to proceed even in the event that our authentication services have gone down
|
||||
* and attempts to authenticate cause long timeouts and blockage.
|
||||
*/
|
||||
@Singleton
|
||||
public class PresentsAuthInvoker extends Invoker
|
||||
public class PresentsAuthInvoker extends ReportingInvoker
|
||||
{
|
||||
@Inject public PresentsAuthInvoker (PresentsDObjectMgr omgr)
|
||||
@Inject public PresentsAuthInvoker (PresentsDObjectMgr omgr, ReportManager repmgr)
|
||||
{
|
||||
super("presents.AuthInvoker", omgr);
|
||||
super("presents.AuthInvoker", omgr, repmgr);
|
||||
setDaemon(true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user