# File lib/fluent/buffer.rb, line 79 def <<(data) raise NotImplementedError, "Implement this method in child class" end
# File lib/fluent/buffer.rb, line 91 def close raise NotImplementedError, "Implement this method in child class" end
# File lib/fluent/buffer.rb, line 113 def msgpack_each(&block) open {|io| u = MessagePack::Unpacker.new(io) begin u.each(&block) rescue EOFError end } end
# File lib/fluent/buffer.rb, line 103 def open raise NotImplementedError, "Implement this method in child class" end
# File lib/fluent/buffer.rb, line 95 def purge raise NotImplementedError, "Implement this method in child class" end
# File lib/fluent/buffer.rb, line 99 def read raise NotImplementedError, "Implement this method in child class" end
Generated with the Darkfish Rdoc Generator 2.