Class: CustomerSalesActivityWorker

Inherits:
Object
  • Object
show all
Includes:
Sidekiq::Job
Defined in:
app/workers/customer_sales_activity_worker.rb

Overview

Sidekiq worker: customer sales activity.

Instance Method Summary collapse

Instance Method Details

#perform(_options = {}) ⇒ Object

Runs the job.

Parameters:

  • _options (Hash) (defaults to: {})

    the options

Returns:

  • (Object)

    the result



11
12
13
# File 'app/workers/customer_sales_activity_worker.rb', line 11

def perform(_options = {})
  Customer::FillSalesActivity.new.process
end