Apache.Hadoop.Hbase.Hbase.Client.send_atomicIncrement C# (CSharp) Method

send_atomicIncrement() public method

public send_atomicIncrement ( byte tableName, byte row, byte column, long value ) : void
tableName byte
row byte
column byte
value long
return void
            public void send_atomicIncrement(byte[] tableName, byte[] row, byte[] column, long value)
            {
                oprot_.WriteMessageBegin(new TMessage("atomicIncrement", TMessageType.Call, seqid_));
                atomicIncrement_args args = new atomicIncrement_args();
                args.TableName = tableName;
                args.Row = row;
                args.Column = column;
                args.Value = value;
                args.Write(oprot_);
                oprot_.WriteMessageEnd();
                oprot_.Transport.Flush();
            }
Hbase.Client