699c19cd4b
exit properly whoops add all linked accounts to drop down consolidate linked admin accounts to the most recently seen one limited some waits to 5s to hopefully prevent a rare thread lock
41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using SharedLibraryCore.Services;
|
|
using IW4MAdmin.Plugins.Stats.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IW4MAdmin.Plugins.Stats.Helpers
|
|
{
|
|
public class ThreadSafeStatsService
|
|
{
|
|
public GenericRepository<EFClientStatistics> ClientStatSvc
|
|
{
|
|
get
|
|
{
|
|
return new GenericRepository<EFClientStatistics>();
|
|
}
|
|
}
|
|
public GenericRepository<EFServer> ServerSvc { get; private set; }
|
|
public GenericRepository<EFClientKill> KillStatsSvc { get; private set; }
|
|
public GenericRepository<EFServerStatistics> ServerStatsSvc { get; private set; }
|
|
public GenericRepository<EFClientMessage> MessageSvc
|
|
{
|
|
get
|
|
{
|
|
return new GenericRepository<EFClientMessage>();
|
|
}
|
|
}
|
|
|
|
public ThreadSafeStatsService()
|
|
{
|
|
//ClientStatSvc = new GenericRepository<EFClientStatistics>();
|
|
ServerSvc = new GenericRepository<EFServer>();
|
|
KillStatsSvc = new GenericRepository<EFClientKill>();
|
|
ServerStatsSvc = new GenericRepository<EFServerStatistics>();
|
|
//MessageSvc = new GenericRepository<EFClientMessage>();
|
|
}
|
|
}
|
|
}
|