Module: Delayed::Backend::Base::ClassMethods

Defined in:
lib/delayed/backend/base.rb

Instance Method Summary collapse

Instance Method Details

#after_forkObject

Hook method that is called after a new worker is forked



37
38
# File 'lib/delayed/backend/base.rb', line 37

def after_fork
end

#before_forkObject

Hook method that is called before a new worker is forked



33
34
# File 'lib/delayed/backend/base.rb', line 33

def before_fork
end

#enqueue(*args) ⇒ Object

Add a job to the queue



13
14
15
16
17
18
19
20
21
22
# File 'lib/delayed/backend/base.rb', line 13

def enqueue(*args)
  object = args.shift
  unless object.respond_to?(:perform)
    raise ArgumentError, 'Cannot enqueue items which do not respond to perform'
  end
    
  priority = args.first || Delayed::Worker.default_priority
  run_at   = args[1]
  self.create(:payload_object => object, :priority => priority.to_i, :run_at => run_at)
end

#reserve(worker, max_run_time = Worker.max_run_time) ⇒ Object



24
25
26
27
28
29
30
# File 'lib/delayed/backend/base.rb', line 24

def reserve(worker, max_run_time = Worker.max_run_time)
  # We get up to 5 jobs from the db. In case we cannot get exclusive access to a job we try the next.
  # this leads to a more even distribution of jobs across the worker processes
  find_available(worker.name, 5, max_run_time).detect do |job|
    job.lock_exclusively!(max_run_time, worker.name)
  end
end

#work_off(num = 100) ⇒ Object



40
41
42
43
# File 'lib/delayed/backend/base.rb', line 40

def work_off(num = 100)
  warn "[DEPRECATION] `Delayed::Job.work_off` is deprecated. Use `Delayed::Worker.new.work_off instead."
  Delayed::Worker.new.work_off(num)
end