class ElasticSearch::Thrift::Rest::Processor

Public Instance Methods

process_execute(seqid, iprot, oprot) click to toggle source
# File lib/elasticsearch/transport/thrift/rest.rb, line 36
def process_execute(seqid, iprot, oprot)
  args = read_args(iprot, Execute_args)
  result = Execute_result.new()
  result.success = @handler.execute(args.request)
  write_result(result, oprot, 'execute', seqid)
end