Exemple #1
0
 public void send_mutateRow(byte[] tableName, byte[] row, List<Mutation> mutations, Dictionary<byte[], byte[]> attributes)
 #endif
 {
   oprot_.WriteMessageBegin(new TMessage("mutateRow", TMessageType.Call, seqid_));
   mutateRow_args args = new mutateRow_args();
   args.TableName = tableName;
   args.Row = row;
   args.Mutations = mutations;
   args.Attributes = attributes;
   args.Write(oprot_);
   oprot_.WriteMessageEnd();
   #if SILVERLIGHT
   return oprot_.Transport.BeginFlush(callback, state);
   #else
   oprot_.Transport.Flush();
   #endif
 }
Exemple #2
0
 public void send_mutateRow(byte[] tableName, byte[] row, List<Mutation> mutations)
 {
     this.oprot_.WriteMessageBegin(new TMessage("mutateRow", TMessageType.Call, this.seqid_));
     var args = new mutateRow_args();
     args.TableName = tableName;
     args.Row = row;
     args.Mutations = mutations;
     args.Write(this.oprot_);
     this.oprot_.WriteMessageEnd();
     this.oprot_.Transport.Flush();
 }
Exemple #3
0
 public void send_mutateRow(byte[] tableName, byte[] row, List<Mutation> mutations)
 {
     oprot_.WriteMessageBegin(new TMessage("mutateRow", TMessageType.Call, seqid_));
     mutateRow_args args = new mutateRow_args();
     args.tableName = tableName;
     args.row = row;
     args.mutations = mutations;
     args.Write(oprot_);
     oprot_.WriteMessageEnd();
     oprot_.Transport.Flush();
 }