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

send_mutateRow() public method

public send_mutateRow ( byte tableName, byte row, List mutations ) : void
tableName byte
row byte
mutations List
return void
            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();
            }