class Impala::Protocol::Fb303::FacebookService::Processor

Public Instance Methods

process_aliveSince(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
270 def process_aliveSince(seqid, iprot, oprot)
271   args = read_args(iprot, AliveSince_args)
272   result = AliveSince_result.new()
273   result.success = @handler.aliveSince()
274   write_result(result, oprot, 'aliveSince', seqid)
275 end
process_getCounter(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
235 def process_getCounter(seqid, iprot, oprot)
236   args = read_args(iprot, GetCounter_args)
237   result = GetCounter_result.new()
238   result.success = @handler.getCounter(args.key)
239   write_result(result, oprot, 'getCounter', seqid)
240 end
process_getCounters(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
228 def process_getCounters(seqid, iprot, oprot)
229   args = read_args(iprot, GetCounters_args)
230   result = GetCounters_result.new()
231   result.success = @handler.getCounters()
232   write_result(result, oprot, 'getCounters', seqid)
233 end
process_getCpuProfile(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
263 def process_getCpuProfile(seqid, iprot, oprot)
264   args = read_args(iprot, GetCpuProfile_args)
265   result = GetCpuProfile_result.new()
266   result.success = @handler.getCpuProfile(args.profileDurationInSec)
267   write_result(result, oprot, 'getCpuProfile', seqid)
268 end
process_getName(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
200 def process_getName(seqid, iprot, oprot)
201   args = read_args(iprot, GetName_args)
202   result = GetName_result.new()
203   result.success = @handler.getName()
204   write_result(result, oprot, 'getName', seqid)
205 end
process_getOption(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
249 def process_getOption(seqid, iprot, oprot)
250   args = read_args(iprot, GetOption_args)
251   result = GetOption_result.new()
252   result.success = @handler.getOption(args.key)
253   write_result(result, oprot, 'getOption', seqid)
254 end
process_getOptions(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
256 def process_getOptions(seqid, iprot, oprot)
257   args = read_args(iprot, GetOptions_args)
258   result = GetOptions_result.new()
259   result.success = @handler.getOptions()
260   write_result(result, oprot, 'getOptions', seqid)
261 end
process_getStatus(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
214 def process_getStatus(seqid, iprot, oprot)
215   args = read_args(iprot, GetStatus_args)
216   result = GetStatus_result.new()
217   result.success = @handler.getStatus()
218   write_result(result, oprot, 'getStatus', seqid)
219 end
process_getStatusDetails(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
221 def process_getStatusDetails(seqid, iprot, oprot)
222   args = read_args(iprot, GetStatusDetails_args)
223   result = GetStatusDetails_result.new()
224   result.success = @handler.getStatusDetails()
225   write_result(result, oprot, 'getStatusDetails', seqid)
226 end
process_getVersion(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
207 def process_getVersion(seqid, iprot, oprot)
208   args = read_args(iprot, GetVersion_args)
209   result = GetVersion_result.new()
210   result.success = @handler.getVersion()
211   write_result(result, oprot, 'getVersion', seqid)
212 end
process_reinitialize(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
277 def process_reinitialize(seqid, iprot, oprot)
278   args = read_args(iprot, Reinitialize_args)
279   @handler.reinitialize()
280   return
281 end
process_setOption(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
242 def process_setOption(seqid, iprot, oprot)
243   args = read_args(iprot, SetOption_args)
244   result = SetOption_result.new()
245   @handler.setOption(args.key, args.value)
246   write_result(result, oprot, 'setOption', seqid)
247 end
process_shutdown(seqid, iprot, oprot) click to toggle source
    # File lib/impala/protocol/facebook_service.rb
283 def process_shutdown(seqid, iprot, oprot)
284   args = read_args(iprot, Shutdown_args)
285   @handler.shutdown()
286   return
287 end