class QueueAsJob
Constants
- MY_QUEUE
Public Instance Methods
perform(greeter = "David")
click to toggle source
# File activejob/test/jobs/queue_as_job.rb, line 9 def perform(greeter = "David") JobBuffer.add("#{greeter} says hello") end