class ActiveJob::QueueAdapters::BelatedAdapter

The adapter in charge of handling ActiveJob integration. WIP

Public Instance Methods

instance() click to toggle source
# File lib/active_job/queue_adapters/belated_adapter.rb, line 10
def instance
  @instance ||= Belated::Client.instance
rescue StandardError
  @instance = Belated::Client.new
end