Apache.Hadoop.Hbase.Thrift.Hbase.Client.send_mutateRows C# (CSharp) Method

send_mutateRows() public method

public send_mutateRows ( byte tableName, List rowBatches ) : void
tableName byte
rowBatches List
return void
            public void send_mutateRows(byte[] tableName, List<BatchMutation> rowBatches)
            {
                oprot_.WriteMessageBegin(new TMessage("mutateRows", TMessageType.Call, seqid_));
                mutateRows_args args = new mutateRows_args();
                args.tableName = tableName;
                args.rowBatches = rowBatches;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                oprot_.Transport.Flush();
            }