Example #1
0
 public DigestBuilder(PeerDht peerDht, Number160 locationKey)
     : base(peerDht, locationKey)
 {
     IsAscending      = true;
     IsBloomFilterAnd = true;
     IsFastGet        = true;
     ReturnNr         = -1;
     SetSelf(this);
 }
Example #2
0
 public RemoveBuilder(PeerDht peerDht, Number160 locationKey)
     : base(peerDht, locationKey)
 {
     IsFastGet = true;
     SetSelf(this);
 }
Example #3
0
 public AddBuilder(PeerDht peerDht, Number160 locationKey)
     : base(peerDht, locationKey)
 {
     SetSelf(this);
 }
Example #4
0
 public DhtBuilder(PeerDht peerDht, Number160 locationKey)
 {
     PeerDht     = peerDht;
     LocationKey = locationKey;
 }