module Sequel::ServerBlock

  1. lib/sequel/extensions/server_block.rb
Parent: Sequel

Methods

Public Class

  1. extended

Public Instance

  1. with_server

Public Class methods

extended (db)

Enable the server block on the connection pool, choosing the correct extension depending on whether the connection pool is threaded or not. Also defines the #with_server method on the receiver for easy use.

[show source]
# File lib/sequel/extensions/server_block.rb, line 45
def self.extended(db)
  pool = db.pool
  if defined?(ShardedThreadedConnectionPool) && pool.is_a?(ShardedThreadedConnectionPool)
    pool.extend(ThreadedServerBlock)
    pool.instance_variable_set(:@default_servers, {})
  else
    pool.extend(UnthreadedServerBlock)
    pool.instance_variable_set(:@default_servers, [])
  end
end

Public Instance methods

with_server (server, &block)

Delegate to the connection pool

[show source]
# File lib/sequel/extensions/server_block.rb, line 57
def with_server(server, &block)
  pool.with_server(server, &block)
end