class Fluent::ArrayEventStream

def each(&block)

def each(&block)
  @entries.each(&block)
  nil
end

def empty?

def empty?
  @time_array.empty?
end

def initialize(entries)

def initialize(entries)
  @entries = entries
end

def repeatable?

def repeatable?
  true
end