Sha256: 9d52cb2760a84a1fb10c0a4ad8a134b48f55b46545e2e858381ae029a7ed39d6

Contents?: true

Size: 632 Bytes

Versions: 9

Compression:

Stored size: 632 Bytes

Contents

# frozen_string_literal: true

module ActiveRecord
  module ConnectionAdapters
    class LegacyPoolManager # :nodoc:
      def initialize
        @name_to_pool_config = {}
      end

      def shard_names
        @name_to_pool_config.keys
      end

      def pool_configs(_ = nil)
        @name_to_pool_config.values
      end

      def remove_pool_config(_, shard)
        @name_to_pool_config.delete(shard)
      end

      def get_pool_config(_, shard)
        @name_to_pool_config[shard]
      end

      def set_pool_config(_, shard, pool_config)
        @name_to_pool_config[shard] = pool_config
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
activerecord-6.1.3.2 lib/active_record/connection_adapters/legacy_pool_manager.rb
activerecord-6.1.3.1 lib/active_record/connection_adapters/legacy_pool_manager.rb
activerecord-6.1.3 lib/active_record/connection_adapters/legacy_pool_manager.rb
activerecord-6.1.2.1 lib/active_record/connection_adapters/legacy_pool_manager.rb
activerecord-6.1.2 lib/active_record/connection_adapters/legacy_pool_manager.rb
activerecord-6.1.1 lib/active_record/connection_adapters/legacy_pool_manager.rb
activerecord-6.1.0 lib/active_record/connection_adapters/legacy_pool_manager.rb
activerecord-6.1.0.rc2 lib/active_record/connection_adapters/legacy_pool_manager.rb
activerecord-6.1.0.rc1 lib/active_record/connection_adapters/legacy_pool_manager.rb