Class/Module Index [+]

Quicksearch

Fluent::MemoryBuffer

Public Class Methods

new() click to toggle source
# File lib/fluent/plugin/buf_memory.rb, line 72
def initialize
  super
end

Public Instance Methods

before_shutdown(out) click to toggle source
# File lib/fluent/plugin/buf_memory.rb, line 84
def before_shutdown(out)
  synchronize do
    @map.each_key {|key|
      push(key)
    }
    while pop(out)
    end
  end
end
configure(conf) click to toggle source
# File lib/fluent/plugin/buf_memory.rb, line 80
def configure(conf)
  super
end
enqueue(chunk) click to toggle source
# File lib/fluent/plugin/buf_memory.rb, line 102
def enqueue(chunk)
end
new_chunk(key) click to toggle source
# File lib/fluent/plugin/buf_memory.rb, line 94
def new_chunk(key)
  MemoryBufferChunk.new(key)
end
resume() click to toggle source
# File lib/fluent/plugin/buf_memory.rb, line 98
def resume
  return [], {}
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.