class Fluent::WinEvtLog::MemoryPositionEntry

Public Class Methods

new() click to toggle source
# File lib/fluent/plugin/in_winevtlog.rb, line 283
def initialize
  @start = 0
  @num = 0
end

Public Instance Methods

read_num() click to toggle source
# File lib/fluent/plugin/in_winevtlog.rb, line 297
def read_num
  @num
end
read_start() click to toggle source
# File lib/fluent/plugin/in_winevtlog.rb, line 293
def read_start
  @start
end
update(start, num) click to toggle source
# File lib/fluent/plugin/in_winevtlog.rb, line 288
def update(start, num)
  @start = start
  @num = num
end