Apache.Hadoop.Hive.ThriftHiveMetastore.Processor.get_index_by_name_Process C# (CSharp) Метод

get_index_by_name_Process() публичный Метод

public get_index_by_name_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
Результат void
            public void get_index_by_name_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                get_index_by_name_args args = new get_index_by_name_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                get_index_by_name_result result = new get_index_by_name_result();
                try
                {
                    result.Success = iface_.get_index_by_name(args.Db_name, args.Tbl_name, args.Index_name);
                }
                catch (MetaException o1)
                {
                    result.O1 = o1;
                }
                catch (NoSuchObjectException o2)
                {
                    result.O2 = o2;
                }
                oprot.WriteMessageBegin(new TMessage("get_index_by_name", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }