mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
Initial .net 6 upgrades
This commit is contained in:
@ -1,93 +1,106 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Concurrent;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using SharedLibraryCore.Services;
|
||||
using SharedLibraryCore.Configuration;
|
||||
using SharedLibraryCore.Database.Models;
|
||||
using System.Threading;
|
||||
using System.Collections;
|
||||
using System;
|
||||
using System.Collections.Concurrent;
|
||||
using SharedLibraryCore.Helpers;
|
||||
using SharedLibraryCore.Services;
|
||||
|
||||
namespace SharedLibraryCore.Interfaces
|
||||
{
|
||||
public interface IManager
|
||||
{
|
||||
IReadOnlyList<IManagerCommand> Commands { get; }
|
||||
|
||||
/// <summary>
|
||||
/// enumerates the registered plugin instances
|
||||
/// </summary>
|
||||
IEnumerable<IPlugin> Plugins { get; }
|
||||
|
||||
IList<IRConParser> AdditionalRConParsers { get; }
|
||||
IList<IEventParser> AdditionalEventParsers { get; }
|
||||
IMiddlewareActionHandler MiddlewareActionHandler { get; }
|
||||
string Version { get; }
|
||||
ITokenAuthentication TokenAuthenticator { get; }
|
||||
string ExternalIPAddress { get; }
|
||||
CancellationToken CancellationToken { get; }
|
||||
bool IsRestartRequested { get; }
|
||||
bool IsRunning { get; }
|
||||
ConcurrentDictionary<long, GameEvent> ProcessingEvents { get; }
|
||||
Task Init();
|
||||
Task Start();
|
||||
void Stop();
|
||||
void Restart();
|
||||
|
||||
[Obsolete]
|
||||
ILogger GetLogger(long serverId);
|
||||
|
||||
IList<Server> GetServers();
|
||||
IList<IManagerCommand> GetCommands();
|
||||
IReadOnlyList<IManagerCommand> Commands { get; }
|
||||
IList<Helpers.MessageToken> GetMessageTokens();
|
||||
IList<MessageToken> GetMessageTokens();
|
||||
IList<EFClient> GetActiveClients();
|
||||
EFClient FindActiveClient(EFClient client);
|
||||
IConfigurationHandler<ApplicationConfiguration> GetApplicationSettings();
|
||||
ClientService GetClientService();
|
||||
PenaltyService GetPenaltyService();
|
||||
|
||||
/// <summary>
|
||||
/// enumerates the registered plugin instances
|
||||
/// </summary>
|
||||
IEnumerable<IPlugin> Plugins { get; }
|
||||
/// <summary>
|
||||
/// provides a page list to add and remove from
|
||||
/// provides a page list to add and remove from
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
IPageList GetPageList();
|
||||
IList<IRConParser> AdditionalRConParsers { get; }
|
||||
IList<IEventParser> AdditionalEventParsers { get; }
|
||||
|
||||
/// <summary>
|
||||
/// provides a method to execute database operations by name without exposing the
|
||||
/// service level methods
|
||||
/// todo: this could be made obsolete by creating a seperate service library with more concrete definitions
|
||||
/// provides a method to execute database operations by name without exposing the
|
||||
/// service level methods
|
||||
/// todo: this could be made obsolete by creating a seperate service library with more concrete definitions
|
||||
/// </summary>
|
||||
/// <param name="operationName"></param>
|
||||
/// <returns></returns>
|
||||
Task<IList<T>> ExecuteSharedDatabaseOperation<T>(string operationName);
|
||||
|
||||
void RegisterSharedDatabaseOperation(Task<IList> operation, string operationName);
|
||||
IMiddlewareActionHandler MiddlewareActionHandler { get; }
|
||||
|
||||
/// <summary>
|
||||
/// generates an rcon parser that can be configured by script plugins
|
||||
/// generates an rcon parser that can be configured by script plugins
|
||||
/// </summary>
|
||||
/// <param name="name">name of the RCon parser</param>
|
||||
/// <returns>new rcon parser instance</returns>
|
||||
IRConParser GenerateDynamicRConParser(string name);
|
||||
|
||||
/// <summary>
|
||||
/// Generates an event parser that can be configured by script plugins
|
||||
/// Generates an event parser that can be configured by script plugins
|
||||
/// </summary>
|
||||
/// <param name="name">name of the event parser</param>
|
||||
/// <returns>new event parser instance</returns>
|
||||
IEventParser GenerateDynamicEventParser(string name);
|
||||
string Version { get;}
|
||||
ITokenAuthentication TokenAuthenticator { get; }
|
||||
string ExternalIPAddress { get; }
|
||||
CancellationToken CancellationToken { get; }
|
||||
bool IsRestartRequested { get; }
|
||||
bool IsRunning { get; }
|
||||
|
||||
Task ExecuteEvent(GameEvent gameEvent);
|
||||
|
||||
/// <summary>
|
||||
/// queues an event for processing
|
||||
/// queues an event for processing
|
||||
/// </summary>
|
||||
/// <param name="gameEvent">event to be processed</param>
|
||||
void AddEvent(GameEvent gameEvent);
|
||||
|
||||
/// <summary>
|
||||
/// adds an additional (script) command to the command list
|
||||
/// adds an additional (script) command to the command list
|
||||
/// </summary>
|
||||
/// <param name="command"></param>
|
||||
void AddAdditionalCommand(IManagerCommand command);
|
||||
|
||||
/// <summary>
|
||||
/// removes a command by its name
|
||||
/// removes a command by its name
|
||||
/// </summary>
|
||||
/// <param name="name">name of command</param>
|
||||
void RemoveCommandByName(string name);
|
||||
|
||||
/// <summary>
|
||||
/// event executed when event has finished executing
|
||||
/// event executed when event has finished executing
|
||||
/// </summary>
|
||||
event EventHandler<GameEvent> OnGameEventExecuted;
|
||||
ConcurrentDictionary<long, GameEvent> ProcessingEvents { get; }
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user