Apache.Hadoop.Hbase.Hbase.Processor.getRowWithColumnsTs_Process C# (CSharp) Method

getRowWithColumnsTs_Process() public method

public getRowWithColumnsTs_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void getRowWithColumnsTs_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                getRowWithColumnsTs_args args = new getRowWithColumnsTs_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                getRowWithColumnsTs_result result = new getRowWithColumnsTs_result();
                try
                {
                    result.Success = iface_.getRowWithColumnsTs(args.TableName, args.Row, args.Columns, args.Timestamp);
                }
                catch (IOError io)
                {
                    result.Io = io;
                }
                oprot.WriteMessageBegin(new TMessage("getRowWithColumnsTs", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }