示例#1
0
 public void send_batch_insert_superColumn_blocking(batch_mutation_super_t batchMutationSuper)
 {
     oprot_.WriteMessageBegin(new TMessage("batch_insert_superColumn_blocking", TMessageType.Call, seqid_));
       batch_insert_superColumn_blocking_args args = new batch_insert_superColumn_blocking_args();
       args.batchMutationSuper = batchMutationSuper;
       args.Write(oprot_);
       oprot_.WriteMessageEnd();
       oprot_.Transport.Flush();
 }
示例#2
0
 public void batch_insert_superColumn(batch_mutation_super_t batchMutationSuper)
 {
     send_batch_insert_superColumn(batchMutationSuper);
 }
示例#3
0
 public bool batch_insert_superColumn_blocking(batch_mutation_super_t batchMutationSuper)
 {
     send_batch_insert_superColumn_blocking(batchMutationSuper);
       return recv_batch_insert_superColumn_blocking();
 }
示例#4
0
 public void Read(TProtocol iprot)
 {
     TField field;
       TStruct struc = iprot.ReadStructBegin();
       while (true)
       {
     field = iprot.ReadFieldBegin();
     if (field.Type == TType.Stop) {
       break;
     }
     switch (field.ID)
     {
       case -1:
     if (field.Type == TType.Struct) {
       this.batchMutationSuper = new batch_mutation_super_t();
       this.batchMutationSuper.Read(iprot);
       this.__isset.batchMutationSuper = true;
     } else {
       TProtocolUtil.Skip(iprot, field.Type);
     }
     break;
       default:
     TProtocolUtil.Skip(iprot, field.Type);
     break;
     }
     iprot.ReadFieldEnd();
       }
       iprot.ReadStructEnd();
 }