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

send_mutateRowsTs() public method

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