Class: RailsWorkflow::OperationWorker
- Inherits:
-
Object
- Object
- RailsWorkflow::OperationWorker
- Includes:
- Sidekiq::Worker
- Defined in:
- app/workers/rails_workflow/operation_worker.rb
Overview
Sidekiq background worker which processing operations.
Instance Method Summary (collapse)
Instance Method Details
- (Object) perform(operation_id)
8 9 10 11 |
# File 'app/workers/rails_workflow/operation_worker.rb', line 8 def perform(operation_id) operation = Operation.find operation_id operation.execute_in_transaction end |