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

get_fields_Process() public method

public get_fields_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void get_fields_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                get_fields_args args = new get_fields_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                get_fields_result result = new get_fields_result();
                try
                {
                    result.Success = iface_.get_fields(args.Db_name, args.Table_name);
                }
                catch (MetaException o1)
                {
                    result.O1 = o1;
                }
                catch (UnknownTableException o2)
                {
                    result.O2 = o2;
                }
                catch (UnknownDBException o3)
                {
                    result.O3 = o3;
                }
                oprot.WriteMessageBegin(new TMessage("get_fields", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }