2024-10-17 15:06:22 -04:00
|
|
|
namespace HermesSocketServer.Store
|
|
|
|
{
|
|
|
|
public interface IStore<K, V>
|
|
|
|
{
|
|
|
|
V? Get(K key);
|
|
|
|
IEnumerable<V> Get();
|
|
|
|
Task Load();
|
|
|
|
void Remove(K? key);
|
2024-10-17 17:17:09 -04:00
|
|
|
Task<bool> Save();
|
2024-10-17 15:06:22 -04:00
|
|
|
bool Set(K? key, V? value);
|
|
|
|
}
|
|
|
|
}
|