Method: ActiveAsync::Async.perform
- Defined in:
- lib/active_async/async.rb
.perform(class_name, id, method, *args) ⇒ Object
This will be called by a worker when a job needs to be processed
14 15 16 |
# File 'lib/active_async/async.rb', line 14 def perform(class_name, id, method, *args) deserialize(class_name, id).send(method, *args) end |