Class: Wrappi::AsyncJob

Inherits:
Object
  • Object
show all
Includes:
AsyncConcern
Defined in:
lib/wrappi/async_job.rb

Class Method Summary collapse

Methods included from AsyncConcern

#wrappi_perform

Class Method Details

.perform_later(*args) ⇒ Object



45
46
47
48
# File 'lib/wrappi/async_job.rb', line 45

def self.perform_later(*args)
  puts "Unable to perform async ActiveJob is not installed"
  new().wrappi_perform(*args)
end

.set(options = {}) ⇒ Object



42
43
44
# File 'lib/wrappi/async_job.rb', line 42

def self.set(options = {})
  self
end