Skip to content

Instantly share code, notes, and snippets.

@rcdexta
Last active April 17, 2020 18:37
Show Gist options
  • Select an option

  • Save rcdexta/067f057a19f0833c0c45303e5f96b7df to your computer and use it in GitHub Desktop.

Select an option

Save rcdexta/067f057a19f0833c0c45303e5f96b7df to your computer and use it in GitHub Desktop.
class UserEventsProcessor
include Shoryuken::Worker
shoryuken_options queue: 'User_Events.fifo', auto_delete: true
def perform(_sqs_event, payload)
Rails.logger.info("_sqs_event: #{_sqs_event}")
Rails.logger.info("UserEventsProcessor payload: #{payload}")
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment