Last active
April 17, 2020 18:37
-
-
Save rcdexta/067f057a19f0833c0c45303e5f96b7df to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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