Apache.Hadoop.Hbase.Thrift.Hbase.Processor.getRowTs_Process C# (CSharp) Method

getRowTs_Process() public method

public getRowTs_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void getRowTs_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                getRowTs_args args = new getRowTs_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                getRowTs_result result = new getRowTs_result();
                try {
                  result.success = iface_.getRowTs(args.tableName, args.row, args.timestamp);
                  result.__isset.success = true;
                } catch (IOError io) {
                  result.io = io;
                  result.__isset.io = true;
                }
                oprot.WriteMessageBegin(new TMessage("getRowTs", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }