示例#1
0
 public KvpDbProxy(IKvpDb<object,object> db, Type t)
     : base(t)
 {
     this.db = db;
 }
示例#2
0
 public Distributor(DhtRing ring, ISingleRpcSender sender, IKvpDb<string,object> db)
 {
     this.ring = ring;
     this.db = db;
     this.sender = sender;
 }