Skip to content

Instantly share code, notes, and snippets.

@bleonard
Created April 14, 2017 22:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bleonard/f91614c7abb0685fd1ef743243c03bc1 to your computer and use it in GitHub Desktop.
Save bleonard/f91614c7abb0685fd1ef743243c03bc1 to your computer and use it in GitHub Desktop.
class InvoiceChargeWorker
include TResque::Worker
inputs :invoice_id
worker_lock :to_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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment