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

getRows_Process() public method

public getRows_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void getRows_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                getRows_args args = new getRows_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                getRows_result result = new getRows_result();
                try
                {
                    result.Success = iface_.getRows(args.TableName, args.Rows);
                }
                catch (IOError io)
                {
                    result.Io = io;
                }
                oprot.WriteMessageBegin(new TMessage("getRows", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }