After Transaction Commit
ActiveRecord::Base.connection.after_transaction_commit { ... }
An ActiveRecord extension that allows writing callbacks to run after the current transaction commits. This is similar to the built-in ActiveRecord::Base#after_commit functionality, but more flexible, and doesn't require putting the callback on a specific model.
Callbacks will only run once, on the next commit, not after every subsequent commit. Callbacks will never run if the transaction rolls back.
Installation
Add this line to your application's Gemfile:
gem 'after_transaction_commit'
And then execute:
$ bundle
Or install it yourself as:
$ gem install after_transaction_commit
Usage
ActiveRecord::Base.transaction do
ActiveRecord::Base.after_transaction_commit { run_some_background_job }
# run_some_background_job has not run yet
end
# now, it has run
Contributing
- Fork it ( https://github.com/instructure/after_transaction_commit/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request