Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BlockFinder"/> class.
 /// </summary>
 public BlockFinder(IOptions <IndexerSettings> configuration, ISyncOperations syncOperations, SyncConnection syncConnection, ILogger <BlockFinder> logger, Storage.IStorage storage)
     : base(configuration, logger)
 {
     this.configuration = configuration;
     this.storage       = storage;
     log = logger;
     this.syncConnection = syncConnection;
     this.syncOperations = syncOperations;
     config = configuration.Value;
     watch  = Stopwatch.Start();
 }
Ejemplo n.º 2
0
 public CacheUpdateEvent(Storage.IStorage storage, string path, int fileId) : base(storage, path, fileId)
 {
 }
Ejemplo n.º 3
0
 public CacheInsertEvent(Storage.IStorage storage, string path, int fileId) : base(storage, path, fileId)
 {
 }