Class: Shoryuken::Worker::InlineExecutor

Inherits:
Object
  • Object
show all
Defined in:
lib/shoryuken/worker/inline_executor.rb

Class Method Summary collapse

Class Method Details

.perform_async(worker_class, body, options = {}) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/shoryuken/worker/inline_executor.rb', line 5

def perform_async(worker_class, body, options = {})
  body = JSON.dump(body) if body.is_a?(Hash)

  sqs_msg = OpenStruct.new(
    body: body,
    attributes: nil,
    md5_of_body: nil,
    md5_of_message_attributes: nil,
    message_attributes: nil,
    message_id: nil,
    receipt_handle: nil,
    delete: nil
  )

  worker_class.new.perform(sqs_msg, BodyParser.parse(worker_class, sqs_msg))
end

.perform_in(worker_class, _interval, body, options = {}) ⇒ Object



22
23
24
# File 'lib/shoryuken/worker/inline_executor.rb', line 22

def perform_in(worker_class, _interval, body, options = {})
  perform_async(worker_class, body, options)
end