class QueueItem

Attributes

body[RW]
retry_sending[RW]
url[RW]

Public Class Methods

new(url, body, retry_sending) click to toggle source
# File lib/securenative/event_manager.rb, line 7
def initialize(url, body, retry_sending)
  @url = url
  @body = body
  @retry = retry_sending
end