Changed various locking mechanism.

This commit is contained in:
Tom
2025-03-29 20:18:09 +00:00
parent c80f1f2aa0
commit c7904f120d
10 changed files with 282 additions and 143 deletions

View File

@@ -2,6 +2,7 @@ namespace HermesSocketServer.Store
{
public interface IStore<K, V>
{
bool Exists(K key);
V? Get(K key);
IDictionary<K, V> Get();
Task Load();