class Fluent::HashForwardOutput::NonHeartbeatNode

Delegate to Node instance disabling heartbeat

Attributes

node[R]

Public Class Methods

new(node) click to toggle source
# File lib/fluent/plugin/out_hash_forward.rb, line 105
def initialize(node)
  @node = node
end

Public Instance Methods

available?() click to toggle source
# File lib/fluent/plugin/out_hash_forward.rb, line 109
def available?
  true
end
heartbeat(detect=true) click to toggle source
# File lib/fluent/plugin/out_hash_forward.rb, line 117
def heartbeat(detect=true)
  true
end
tick() click to toggle source
# File lib/fluent/plugin/out_hash_forward.rb, line 113
def tick
  false
end