Exemplo n.º 1
0
 public FileDownloader(ILocalCacheStrategy localCacheStrategy)
 {
     _localCacheStrategy = localCacheStrategy;
 }
Exemplo n.º 2
0
 public LocalCacheLock(ILocalCacheStrategy stragegy, string resourceName, string key, int retryCount, TimeSpan retryDelay)
     : base(stragegy, resourceName, key, retryCount, retryDelay)
 {
     _localStrategy = stragegy;
 }