Sha256: 0ec4aa3ba30bde58c764f9dbfaf833915cb02ecfd4273c0e16455e7340bbfdaf
Contents?: true
Size: 1.44 KB
Versions: 5
Compression:
Stored size: 1.44 KB
Contents
module Slaver module ProxyMethods extend ActiveSupport::Concern included do class << self alias_method_chain :connection, :proxy alias_method_chain :connection_pool, :proxy alias_method_chain :clear_all_connections!, :proxy alias_method_chain :clear_active_connections!, :proxy alias_method_chain :connected?, :proxy end end module ClassMethods def connection_pool_with_proxy if current_config connection_proxy.connection_pool else connection_pool_without_proxy end end def connection_with_proxy if current_config connection_proxy else (connection_pool && connection_pool.connection) end end def clear_active_connections_with_proxy! if current_config connection_proxy.clear_active_connections! else clear_active_connections_without_proxy! end end def clear_all_connections_with_proxy! if current_config connection_proxy.clear_all_connections! else clear_all_connections_without_proxy! end end def connected_with_proxy? if current_config connection_proxy.connected? else connected_without_proxy? end end def connection_proxy Proxy.instance.for_config(self, current_config) end end end end
Version data entries
5 entries across 5 versions & 1 rubygems