Exemplo n.º 1
0
 public CacheWriter(
     string workingDirectory,
     CacheWatchOptions options,
     CacheConversion cacheConversion)
 {
     _cacheConversion  = cacheConversion;
     _workingDirectory = workingDirectory;
     _options          = options;
     _cacheReader      = new CacheReader(_options.CachePaths, _options.ExcludedCachePaths);
     _chartData        = new ChartData();
 }
Exemplo n.º 2
0
 public CacheWatch()
 {
     _cacheConversion  = new CacheConversion();
     _workingDirectory = Path.Combine(Path.GetTempPath(), "cachevisualization");
 }