Created
March 27, 2017 01:17
-
-
Save nandokakimoto/85ef460f08dd2083de0917686c9daade to your computer and use it in GitHub Desktop.
Simple Active Job example
This file contains 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 BillingService | |
def self.process(order) | |
Rails.logger.info "Processing order #{order.id}..." | |
sleep(3) | |
Rails.logger.info "Order #{order.id} processed successfully." | |
end | |
end |
This file contains 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
require './app/services/billing_service' | |
class ProcessOrderJob < ApplicationJob | |
queue_as :default | |
def perform(order_id) | |
order = Order.find(order_id) | |
BillingService.process(order) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment