class Scribe::Processor

Public Instance Methods

process_Log(seqid, iprot, oprot) click to toggle source
# File lib/scribe.rb, line 35
def process_Log(seqid, iprot, oprot)
  args = read_args(iprot, Log_args)
  result = Log_result.new()
  result.success = @handler.Log(args.messages)
  write_result(result, oprot, 'Log', seqid)
end