module Backchat

Constants

VERSION

Public Class Methods

connection_pool(&block) click to toggle source
# File lib/backchat/connection_pool.rb, line 94
def self.connection_pool(&block)
  @connection_pool = ConnectionPool.new
  block_given? ? @connection_pool.with_connection(&block) : @connection_pool
end