class Impala::Protocol::ImpalaHiveServer2Service::Processor

Public Instance Methods

process_GetExecSummary(seqid, iprot, oprot) click to toggle source
   # File lib/impala/protocol/impala_hive_server2_service.rb
52 def process_GetExecSummary(seqid, iprot, oprot)
53   args = read_args(iprot, GetExecSummary_args)
54   result = GetExecSummary_result.new()
55   result.success = @handler.GetExecSummary(args.req)
56   write_result(result, oprot, 'GetExecSummary', seqid)
57 end
process_GetRuntimeProfile(seqid, iprot, oprot) click to toggle source
   # File lib/impala/protocol/impala_hive_server2_service.rb
59 def process_GetRuntimeProfile(seqid, iprot, oprot)
60   args = read_args(iprot, GetRuntimeProfile_args)
61   result = GetRuntimeProfile_result.new()
62   result.success = @handler.GetRuntimeProfile(args.req)
63   write_result(result, oprot, 'GetRuntimeProfile', seqid)
64 end