module ActiveRecord::ConnectionAdapters

Public Class Methods

fiber_pools() click to toggle source
# File lib/active_record/patches.rb, line 4
def self.fiber_pools
  @fiber_pools ||= []
end
register_fiber_pool(fp) click to toggle source
# File lib/active_record/patches.rb, line 7
def self.register_fiber_pool(fp)
  fiber_pools << fp
end