1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Common/Cache/CacheManger.cs

22 lines
489 B
C#
Raw Normal View History

2013-05-01 04:11:00 +03:00
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>());
}
}
}