class LogStash::Outputs::Splunk::RetryTimerTask

Public Class Methods

new(pending, event, attempt) click to toggle source
Calls superclass method
# File lib/logstash/outputs/splunk.rb, line 123
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/splunk.rb, line 130
def run
  @pending << [@event, @attempt]
end