Flowdock
method

register_pool

Importance_0
v7.0.0 - Show latest stable - 0 notes - Class: Reaper
register_pool(pool, frequency) public

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb, line 28
          def register_pool(pool, frequency) # :nodoc:
            @mutex.synchronize do
              unless @threads[frequency]&.alive?
                @threads[frequency] = spawn_thread(frequency)
              end
              @pools[frequency] ||= []
              @pools[frequency] << WeakRef.new(pool)
            end
          end
Register or log in to add new notes.