Ejemplo n.º 1
0
 public PHashComparer(DBreezeInstance dbInstance, HashRepository hashes, MurmurRepository murmurs, ILog log)
 {
     this.dbInstance = dbInstance;
     this.hashes = hashes;
     this.murmurs = murmurs;
     this.log = log;
 }
Ejemplo n.º 2
0
 public MurmurRepository(DBreezeInstance dbInstance, ILog log)
 {
     this.dbInstance = dbInstance;
     this.log = log;
 }
Ejemplo n.º 3
0
 public DHashComparer(DBreezeInstance dbInstance)
 {
     this.dbInstance = dbInstance;
 }
Ejemplo n.º 4
0
 public DHashCalculator(DBreezeInstance dbInstance, HashRepository hashes, ILog log)
 {
     this.dbInstance = dbInstance;
     this.hashes = hashes;
     this.log = log;
 }