mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
huge commit for advanced stats feature.
broke data out into its own library. may be breaking changes with existing plugins
This commit is contained in:
14
Data/Abstractions/ILookupCache.cs
Normal file
14
Data/Abstractions/ILookupCache.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Data.Abstractions
|
||||
{
|
||||
public interface ILookupCache<T> where T : class
|
||||
{
|
||||
Task InitializeAsync();
|
||||
Task<T> AddAsync(T item);
|
||||
Task<T> FirstAsync(Func<T, bool> query);
|
||||
IEnumerable<T> GetAll();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user