Пример #1
0
 public CacheLayout(DirectoryInfo rootDirectory, string dateFormat, CacheArchiveType cacheArchiveType, CacheFileGranularity granularity, ILoadCachePathResolver resolver)
 {
     DateFormat           = dateFormat;
     ArchiveType          = cacheArchiveType;
     CacheFileGranularity = granularity;
     Resolver             = resolver;
     RootDirectory        = rootDirectory;
 }
Пример #2
0
 public ZipTestLayout(DirectoryInfo dir, string dateFormat, CacheArchiveType cacheArchiveType,
                      CacheFileGranularity granularity, ILoadCachePathResolver resolver) : base(dir, dateFormat, cacheArchiveType,
                                                                                                granularity, resolver)
 {
 }
Пример #3
0
 public ZipCacheLayoutOnePerDay(DirectoryInfo rootCacheDirectory, ILoadCachePathResolver resolver)
     : base(rootCacheDirectory, "yyyy-MM-dd", CacheArchiveType.Zip, CacheFileGranularity.Day, resolver)
 {
 }