add(element)
Add element to the queue. Never blocks.
# File activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb, line 119 def add(element) synchronize do @queue.push element @cond.signal end end