class BackgroundJobs::UnknownBackgroundJobsQueueStrategy
Public Class Methods
new(strategy_name)
click to toggle source
# File lib/background_jobs/job_queue_factory.rb, line 5 def initialize(strategy_name) @strategy_name = strategy_name end
Public Instance Methods
to_s()
click to toggle source
# File lib/background_jobs/job_queue_factory.rb, line 9 def to_s "Unknown strategy '#{@strategy_name}' doesnt exist!" end