public CacheItem(CacheKey key, CacheValue value) { this.key = key; this.value = value; }
protected abstract bool DoSet(CacheKey key, CacheValue value);
protected override bool DoSet(CacheKey key, CacheValue value) { return this.scheduler.Set(key, value); }