Class: RailsWorkflow::OperationWorker

Inherits:
Object
  • Object
show all
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)

Parameters:

  • operation_id

    which will be executed



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