Created
May 2, 2017 05:03
-
-
Save bleonard/04c39daa5ad5e8abc507ff3f4be02b0d 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 InvoiceChargeWorker | |
include TResque::Worker | |
inputs :invoice_id | |
worker_lock :invoice_id | |
def work | |
return unless needed? | |
invoice.charge! | |
end | |
def to_id | |
invoice.to_id | |
end | |
def needed? | |
invoice.pending? | |
end | |
def invoice | |
@invoice ||= Invoice.find(invoice_id) | |
end | |
end | |
# When invoice is created | |
InvoiceChargeWorker.enqueue_at(24.hours.from_now, invoice_id: invoice.id) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment