Parent

Class/Module Index [+]

Quicksearch

Fluent::TailInput::MemoryPositionEntry

Public Class Methods

new() click to toggle source
# File lib/fluent/plugin/in_tail.rb, line 474
def initialize
  @pos = 0
  @inode = 0
end

Public Instance Methods

read_inode() click to toggle source
# File lib/fluent/plugin/in_tail.rb, line 492
def read_inode
  @inode
end
read_pos() click to toggle source
# File lib/fluent/plugin/in_tail.rb, line 488
def read_pos
  @pos
end
update(ino, pos) click to toggle source
# File lib/fluent/plugin/in_tail.rb, line 479
def update(ino, pos)
  @inode = ino
  @pos = pos
end
update_pos(pos) click to toggle source
# File lib/fluent/plugin/in_tail.rb, line 484
def update_pos(pos)
  @pos = pos
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.