mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-04 14:25:37 +01:00
28 lines
886 B
C#
28 lines
886 B
C#
namespace Giants.Services
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq.Expressions;
|
|
using System.Threading.Tasks;
|
|
|
|
public interface IServerRegistryStore
|
|
{
|
|
Task Initialize();
|
|
|
|
Task DeleteServer(string id, string partitionKey = null);
|
|
|
|
Task DeleteServers(IEnumerable<string> ids, string partitionKey = null);
|
|
|
|
Task<ServerInfo> GetServerInfo(string ipAddress);
|
|
|
|
Task<IEnumerable<ServerInfo>> GetServerInfos(Expression<Func<ServerInfo, bool>> whereExpression = null, string partitionKey = null);
|
|
|
|
Task<IEnumerable<TSelect>> GetServerInfos<TSelect>(
|
|
Expression<Func<ServerInfo, TSelect>> selectExpression,
|
|
Expression<Func<ServerInfo, bool>> whereExpression = null,
|
|
string partitionKey = null);
|
|
|
|
Task UpsertServerInfo(ServerInfo serverInfo);
|
|
}
|
|
}
|