You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Zero/ZeroLevel/Services/Collections/IEverythingStorage.cs

14 lines
383 B

6 years ago
namespace ZeroLevel.Services.Collections
{
public interface IEverythingStorage
{
bool TryAdd<T>(string key, T value);
bool ContainsKey<T>(string key);
bool TryRemove<T>(string key);
void Add<T>(string key, T value);
void AddOrUpdate<T>(string key, T value);
void Remove<T>(string key);
T Get<T>(string key);
}
}

Powered by TurnKey Linux.