class ConnectionPool::TimedStack

def store_connection(obj, options = nil)

This method must return +obj+ to the stack.

This is an extension point for TimedStack and is called with a mutex.
#
def store_connection(obj, options = nil)
  @que.push [obj, current_time]
end