Apache.Hadoop.Hbase.Thrift2.THBaseService.Processor.getScannerRows_Process C# (CSharp) Method

getScannerRows_Process() public method

public getScannerRows_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void getScannerRows_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                getScannerRows_args args = new getScannerRows_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                getScannerRows_result result = new getScannerRows_result();
                try {
                  result.Success = iface_.getScannerRows(args.ScannerId, args.NumRows);
                } catch (TIOError io) {
                  result.Io = io;
                } catch (TIllegalArgument ia) {
                  result.Ia = ia;
                }
                oprot.WriteMessageBegin(new TMessage("getScannerRows", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }