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

send_mutateRowTs() public method

public send_mutateRowTs ( byte tableName, byte row, List mutations, long timestamp ) : void
tableName byte
row byte
mutations List
timestamp long
return void
            public void send_mutateRowTs(byte[] tableName, byte[] row, List<Mutation> mutations, long timestamp)
            {
                oprot_.WriteMessageBegin(new TMessage("mutateRowTs", TMessageType.Call, seqid_));
                mutateRowTs_args args = new mutateRowTs_args();
                args.tableName = tableName;
                args.row = row;
                args.mutations = mutations;
                args.timestamp = timestamp;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                oprot_.Transport.Flush();
            }