コード例 #1
0
ファイル: PeerDht.cs プロジェクト: lanicon/TomP2P.NET
 internal PeerDht(Peer peer, StorageLayer storageLayer, DistributedHashTable dht, StorageRpc storageRpc)
 {
     Peer         = peer;
     StorageLayer = storageLayer;
     Dht          = dht;
     StorageRpc   = storageRpc;
 }
コード例 #2
0
 public DistributedHashTable(DistributedRouting routing, StorageRpc storageRpc, DirectDataRpc directDataRpc)
 {
     _routing       = routing;
     _storageRpc    = storageRpc;
     _directDataRpc = directDataRpc;
 }