class ActiveJob::QueueAdapters::ConeyIslandAdapter
Public Instance Methods
get_retry_from_args(job)
click to toggle source
# File lib/coney_island/coney_island_adapter.rb, line 31 def get_retry_from_args(job) job.class::RETRY_LIMIT if job.class.const_defined? :RETRY_LIMIT end
get_timeout_from_args(job)
click to toggle source
# File lib/coney_island/coney_island_adapter.rb, line 27 def get_timeout_from_args(job) job.class::TIMEOUT if job.class.const_defined? :TIMEOUT end