class Mastiff::NullWorker

Public Instance Methods

perform(null_id) click to toggle source
# File lib/mastiff/null_worker.rb, line 4
def perform(null_id)
  puts 'Doing nothing'
end
perform_async(null_id) click to toggle source
# File lib/mastiff/null_worker.rb, line 7
def perform_async(null_id)
  puts 'Doing nothing'
end