示例#1
0
 public KeyValueBaseClient.KeyValueBaseReference.ValueListImpl[] AtomicScan(KeyValueBaseClient.KeyValueBaseReference.KeyImpl begin, KeyValueBaseClient.KeyValueBaseReference.KeyImpl end, object predicate)
 {
     return(base.Channel.AtomicScan(begin, end, predicate));
 }
示例#2
0
 public void Delete(KeyValueBaseClient.KeyValueBaseReference.KeyImpl key)
 {
     base.Channel.Delete(key);
 }
示例#3
0
 public void Insert(KeyValueBaseClient.KeyValueBaseReference.KeyImpl key, KeyValueBaseClient.KeyValueBaseReference.ValueListImpl value)
 {
     base.Channel.Insert(key, value);
 }
示例#4
0
 public void Update(KeyValueBaseClient.KeyValueBaseReference.KeyImpl key, KeyValueBaseClient.KeyValueBaseReference.ValueListImpl newValue)
 {
     base.Channel.Update(key, newValue);
 }
示例#5
0
 public KeyValueBaseClient.KeyValueBaseReference.ValueListImpl Read(KeyValueBaseClient.KeyValueBaseReference.KeyImpl key)
 {
     return(base.Channel.Read(key));
 }