Fluent::EventStream
EventStream from entries: Array of [time, record]
Use this class for many events data with a tag and its representation is [ [time, record], [time, record], .. ]
# File lib/fluent/event.rb, line 65 def initialize(entries) @entries = entries end
# File lib/fluent/event.rb, line 69 def dup entries = @entries.map(:dup) ArrayEventStream.new(entries) end
# File lib/fluent/event.rb, line 82 def each(&block) @entries.each(&block) nil end
# File lib/fluent/event.rb, line 78 def empty? @entries.empty? end
# File lib/fluent/event.rb, line 74 def repeatable? true end
[Validate]
Generated with the Darkfish Rdoc Generator 2.