class Elastic::Shims::Base

Attributes

child[R]

Public Class Methods

new(_child) click to toggle source
# File lib/elastic/shims/base.rb, line 7
def initialize(_child)
  @child = _child
end

Public Instance Methods

handle_result(_raw, _formatter) click to toggle source
# File lib/elastic/shims/base.rb, line 19
def handle_result(_raw, _formatter)
  @child.handle_result(_raw, _formatter)
end
render(_options = {}) click to toggle source
# File lib/elastic/shims/base.rb, line 15
def render(_options = {})
  @child.render(_options)
end
traverse(&_block) click to toggle source
# File lib/elastic/shims/base.rb, line 11
def traverse(&_block)
  @child.traverse(&_block)
end