add_back(element)
Add element to the back of the queue. Never blocks.
# File activerecord/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb, line 44 def add_back(element) synchronize do @queue.unshift element @cond.signal end end