Workers Workers are your building blocks of Asynchronous Task Processing. An empty auto generated worker looks like this: class BillingWorker < BackgrounDRb::MetaWorker set_worker_name :billing_worker def create(args = nil) # method gets called, when new instance of worker is created. end end set_worker_name will set the worker name which can be later used while invoking tasks on the worker. cre

