コード例 #1
0
 public DigestBuilder(PeerDht peerDht, Number160 locationKey)
     : base(peerDht, locationKey)
 {
     IsAscending      = true;
     IsBloomFilterAnd = true;
     IsFastGet        = true;
     ReturnNr         = -1;
     SetSelf(this);
 }
コード例 #2
0
ファイル: RemoveBuilder.cs プロジェクト: lanicon/TomP2P.NET
 public RemoveBuilder(PeerDht peerDht, Number160 locationKey)
     : base(peerDht, locationKey)
 {
     IsFastGet = true;
     SetSelf(this);
 }
コード例 #3
0
ファイル: AddBuilder.cs プロジェクト: lanicon/TomP2P.NET
 public AddBuilder(PeerDht peerDht, Number160 locationKey)
     : base(peerDht, locationKey)
 {
     SetSelf(this);
 }
コード例 #4
0
 public DhtBuilder(PeerDht peerDht, Number160 locationKey)
 {
     PeerDht     = peerDht;
     LocationKey = locationKey;
 }