# File lib/fluent/event.rb, line 25defeach(&block)
raiseNotImplementedError, "DO NOT USE THIS CLASS directly."end
repeatable?()click to toggle source
# File lib/fluent/event.rb, line 21defrepeatable?falseend
to_msgpack_stream()click to toggle source
# File lib/fluent/event.rb, line 29defto_msgpack_streamout = MessagePack::Packer.new# MessagePack::Packer is fastest way to serialize eventseach {|time,record|out.write([time,record])
}
out.to_send