Apache.Hadoop.Hive.ThriftHive.Processor.getQueryPlan_Process C# (CSharp) Method

getQueryPlan_Process() public method

public getQueryPlan_Process ( int seqid, TProtocol iprot, TProtocol oprot ) : void
seqid int
iprot Thrift.Protocol.TProtocol
oprot Thrift.Protocol.TProtocol
return void
            public void getQueryPlan_Process(int seqid, TProtocol iprot, TProtocol oprot)
            {
                getQueryPlan_args args = new getQueryPlan_args();
                args.Read(iprot);
                iprot.ReadMessageEnd();
                getQueryPlan_result result = new getQueryPlan_result();
                try
                {
                    result.Success = iface_.getQueryPlan();
                }
                catch (HiveServerException ex)
                {
                    result.Ex = ex;
                }
                oprot.WriteMessageBegin(new TMessage("getQueryPlan", TMessageType.Reply, seqid));
                result.Write(oprot);
                oprot.WriteMessageEnd();
                oprot.Transport.Flush();
            }