public ExistsCommand(Cluster cluster, Policy policy, Key key)
 {
     this.policy    = policy;
     this.key       = key;
     this.partition = Partition.Read(cluster, policy, key);
 }
Esempio n. 2
0
 public ReadHeaderCommand(Cluster cluster, Policy policy, Key key)
     : base(cluster, policy)
 {
     this.key       = key;
     this.partition = Partition.Read(cluster, policy, key);
 }