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

scannerOpenWithPrefix_Process() public method

public scannerOpenWithPrefix_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void scannerOpenWithPrefix_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                scannerOpenWithPrefix_args args = new scannerOpenWithPrefix_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                scannerOpenWithPrefix_result result = new scannerOpenWithPrefix_result();
                try
                {
                    result.Success = iface_.scannerOpenWithPrefix(args.TableName, args.StartAndPrefix, args.Columns);
                }
                catch (IOError io)
                {
                    result.Io = io;
                }
                oprot.WriteMessageBegin(new TMessage("scannerOpenWithPrefix", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }