Object
# File lib/fluent/output.rb, line 22 def initialize(array, tag, es, chain=NullOutputChain.instance) @array = array @tag = tag @es = es @offset = 0 @chain = chain end
# File lib/fluent/output.rb, line 30 def next if @array.length <= @offset return @chain.next end @offset += 1 result = @array[@offset-1].emit(@tag, @es, self) result end
[Validate]
Generated with the Darkfish Rdoc Generator 2.