1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-13 07:33:18 +00:00
Radarr/NzbDrone.Common/Cache/ICached.cs

13 lines
274 B
C#
Raw Normal View History

2013-04-30 18:11:00 -07:00
using System;
namespace NzbDrone.Common.Cache
{
public interface ICached<T>
{
void Set(string key, T value);
T Get(string key, Func<T> function);
bool ContainsKey(string key);
void Clear();
void Remove(string key);
}
}