class Fluent::NullOutput

Public Class Methods

new() click to toggle source
Calls superclass method Fluent::Output.new
# File lib/fluent/plugin/out_null.rb, line 21
def initialize
  super
end

Public Instance Methods

configure(conf) click to toggle source
Calls superclass method Fluent::Output#configure
# File lib/fluent/plugin/out_null.rb, line 25
def configure(conf)
  super
end
emit(tag, es, chain) click to toggle source
# File lib/fluent/plugin/out_null.rb, line 35
def emit(tag, es, chain)
  chain.next
end
shutdown() click to toggle source
# File lib/fluent/plugin/out_null.rb, line 32
def shutdown
end
start() click to toggle source
# File lib/fluent/plugin/out_null.rb, line 29
def start
end