Class: Fluent::Plugin::TailInput::TailWatcher::LineBufferTimerFlusher
- Inherits:
-
Object
- Object
- Fluent::Plugin::TailInput::TailWatcher::LineBufferTimerFlusher
- Defined in:
- lib/fluent/plugin/in_tail.rb
Instance Attribute Summary collapse
-
#line_buffer ⇒ Object
Returns the value of attribute line_buffer.
Instance Method Summary collapse
- #close(tw) ⇒ Object
-
#initialize(log, flush_interval, &flush_method) ⇒ LineBufferTimerFlusher
constructor
A new instance of LineBufferTimerFlusher.
- #on_notify(tw) ⇒ Object
- #reset_timer ⇒ Object
Constructor Details
#initialize(log, flush_interval, &flush_method) ⇒ LineBufferTimerFlusher
Returns a new instance of LineBufferTimerFlusher.
1264 1265 1266 1267 1268 1269 1270 |
# File 'lib/fluent/plugin/in_tail.rb', line 1264 def initialize(log, flush_interval, &flush_method) @log = log @flush_interval = flush_interval @flush_method = flush_method @start = nil @line_buffer = nil end |
Instance Attribute Details
#line_buffer ⇒ Object
Returns the value of attribute line_buffer.
1262 1263 1264 |
# File 'lib/fluent/plugin/in_tail.rb', line 1262 def line_buffer @line_buffer end |
Instance Method Details
#close(tw) ⇒ Object
1284 1285 1286 1287 1288 1289 |
# File 'lib/fluent/plugin/in_tail.rb', line 1284 def close(tw) return unless @line_buffer @flush_method.call(tw, @line_buffer) @line_buffer = nil end |
#on_notify(tw) ⇒ Object
1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 |
# File 'lib/fluent/plugin/in_tail.rb', line 1272 def on_notify(tw) unless @start && @flush_method return end if Time.now - @start >= @flush_interval @flush_method.call(tw, @line_buffer) if @line_buffer @line_buffer = nil @start = nil end end |
#reset_timer ⇒ Object
1291 1292 1293 1294 1295 |
# File 'lib/fluent/plugin/in_tail.rb', line 1291 def reset_timer return unless @flush_interval @start = Time.now end |