Esempio n. 1
0
 public static ReflectionInoCore <V> GetInstance()
 {
     if (_instance == null)
     {
         lock (_instanceLock)
             if (_instance == null)
             {
                 _instance = new ReflectionInoCore <V>();
                 Action addItem = () => { ReflectionInoCore <V> .GetInstance().RemoveAllCache(); };
                 ReflectionInoHelper.AddRemoveFunc(addItem);
             }
     }
     return(_instance);
 }
Esempio n. 2
0
 public void Remove <V>(string key)
 {
     ReflectionInoCore <V> .GetInstance().Remove(key);
 }
Esempio n. 3
0
 public IEnumerable <string> GetAllKey <V>()
 {
     return(ReflectionInoCore <V> .GetInstance().GetAllKey());
 }
Esempio n. 4
0
 public V GetOrCreate <V>(string cacheKey, Func <V> create, int cacheDurationInSeconds = int.MaxValue)
 {
     return(ReflectionInoCore <V> .GetInstance().GetOrCreate(cacheKey, create));
 }
Esempio n. 5
0
 public V Get <V>(string key)
 {
     return(ReflectionInoCore <V> .GetInstance().Get(key));
 }
Esempio n. 6
0
 public bool ContainsKey <V>(string key)
 {
     return(ReflectionInoCore <V> .GetInstance().ContainsKey(key));
 }
Esempio n. 7
0
 public void Add <V>(string key, V value, int cacheDurationInSeconds)
 {
     ReflectionInoCore <V> .GetInstance().Add(key, value, cacheDurationInSeconds);
 }
Esempio n. 8
0
 public void Add <V>(string key, V value)
 {
     ReflectionInoCore <V> .GetInstance().Add(key, value);
 }
Esempio n. 9
0
 public void RemoveCacheAll <T>()
 {
     ReflectionInoCore <T> .GetInstance().RemoveAllCache();
 }