1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Common/Cache/CacheManger.cs
2013-05-02 16:06:40 -07:00

22 lines
489 B
C#

using System;
using NzbDrone.Common.EnsureThat;
namespace NzbDrone.Common.Cache
{
public static class CacheManger
{
private static readonly ICached<object> Cache;
static CacheManger()
{
Cache = new Cached<object>();
}
public static ICached<T> GetCache<T>(Type type)
{
Ensure.That(() => type).IsNotNull();
return (ICached<T>)Cache.Get(type.FullName, () => new Cached<T>());
}
}
}