public void send_mutateRows(byte[] tableName, List<BatchMutation> rowBatches) { this.oprot_.WriteMessageBegin(new TMessage("mutateRows", TMessageType.Call, this.seqid_)); var args = new mutateRows_args(); args.TableName = tableName; args.RowBatches = rowBatches; args.Write(this.oprot_); this.oprot_.WriteMessageEnd(); this.oprot_.Transport.Flush(); }
public void send_mutateRows(byte[] tableName, List<BatchMutation> rowBatches, Dictionary<byte[], byte[]> attributes) #endif { oprot_.WriteMessageBegin(new TMessage("mutateRows", TMessageType.Call, seqid_)); mutateRows_args args = new mutateRows_args(); args.TableName = tableName; args.RowBatches = rowBatches; args.Attributes = attributes; args.Write(oprot_); oprot_.WriteMessageEnd(); #if SILVERLIGHT return oprot_.Transport.BeginFlush(callback, state); #else oprot_.Transport.Flush(); #endif }