method_missing

in lib/logstash/outputs/kusto.rb [417:425]


  def method_missing(method_name, *args, &block)
    if @io.respond_to?(method_name)

      @io.send(method_name, *args, &block)
    else
      super
    end
  end