class LogStash::Outputs::Influx::RetryTimerTask
Public Class Methods
new(pending, event, attempt)
click to toggle source
Calls superclass method
# File lib/logstash/outputs/influx.rb, line 117 def initialize(pending, event, attempt) @pending = pending @event = event @attempt = attempt super() end
Public Instance Methods
run()
click to toggle source
# File lib/logstash/outputs/influx.rb, line 124 def run @pending << [@event, @attempt] end