Example #1
0
 public CacheItem(CacheKey key, CacheValue value)
 {
     this.key = key;
     this.value = value;
 }
Example #2
0
 protected abstract bool DoSet(CacheKey key, CacheValue value);
Example #3
0
 protected override bool DoSet(CacheKey key, CacheValue value)
 {
     return this.scheduler.Set(key, value);
 }