Ejemplo n.º 1
0
		public void UnregisterCache(Cache cache)
		{
			lock (this.syncObject)
			{
				this.caches.Remove(cache);
			}
		}
Ejemplo n.º 2
0
		public void RegisterCache(Cache cache)
		{
			lock (this.syncObject)
			{
				this.caches.Add(cache);
			}
		}