Apache.Hadoop.Hive.ThriftHiveMetastore.Processor.get_table_Process C# (CSharp) Method

get_table_Process() public method

public get_table_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void get_table_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                get_table_args args = new get_table_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                get_table_result result = new get_table_result();
                try
                {
                    result.Success = iface_.get_table(args.Dbname, args.Tbl_name);
                }
                catch (MetaException o1)
                {
                    result.O1 = o1;
                }
                catch (NoSuchObjectException o2)
                {
                    result.O2 = o2;
                }
                oprot.WriteMessageBegin(new TMessage("get_table", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }