1 2 3 4 5
class HelloJob < ActiveJob::Base def perform(greeter = "David") $BUFFER << "#{greeter} says hello" end end