mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
22 lines
489 B
C#
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>());
|
|
}
|
|
}
|
|
} |