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

scannerOpenTs_Process() public method

public scannerOpenTs_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void scannerOpenTs_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                scannerOpenTs_args args = new scannerOpenTs_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                scannerOpenTs_result result = new scannerOpenTs_result();
                try {
                  result.success = iface_.scannerOpenTs(args.tableName, args.startRow, args.columns, args.timestamp);
                  result.__isset.success = true;
                } catch (IOError io) {
                  result.io = io;
                  result.__isset.io = true;
                }
                oprot.WriteMessageBegin(new TMessage("scannerOpenTs", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }