No commit activity in last 3 years
No release in over 3 years
ActiveRecord::Base.connection.after_transaction_commit { ... }
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
>= 1.17, < 3.0
>= 0
~> 13.0
>= 0
>= 0

Runtime

 Project Readme

After Transaction Commit

ActiveRecord::Base.connection.after_transaction_commit { ... }

Build Status

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.connection.after_transaction_commit { run_some_background_job }
  # run_some_background_job has not run yet
end
# now, it has run

# this one runs immediately, since we are outside a transaction
ActiveRecord::Base.connection.after_transaction_commit { some_other_task }

Usage in Tests

If you want to write tests that interact with after_transaction_commit callbacks, pull in the test_after_commit gem in your test environment, and things will work as expected. See that gem's README for installation instructions.

Contributing

  1. Fork it ( https://github.com/instructure/after_transaction_commit/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request