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