Sha256: affaf94df6840e092d3c86fda2cbbdead5ef253cad70a0775bf0cda7816c96ad

Contents?: true

Size: 745 Bytes

Versions: 4

Compression:

Stored size: 745 Bytes

Contents

# frozen_string_literal: true

module Plutonium
  module Lib
    class AfterCommit
      def initialize(rolled_back: false, &block)
        @rolled_back = rolled_back
        @callback = block
      end

      def committed!(*)
        @callback.call
      end

      def before_committed!(*)
      end

      def rolledback!(*)
        @callback.call if @rolled_back
      end

      def trigger_transactional_callbacks?
        true
      end

      class << self
        def execute(rolled_back: false, connection: ActiveRecord::Base.connection, &block)
          connection.transaction_open? ? connection.add_transaction_record(AfterCommit.new(rolled_back: rolled_back, &block)) : yield
          nil
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
plutonium-0.6.2 lib/plutonium/lib/after_commit.rb
plutonium-0.6.1 lib/plutonium/lib/after_commit.rb
plutonium-0.6.0 lib/plutonium/lib/after_commit.rb
plutonium-0.5.0 lib/plutonium/lib/after_commit.rb