class EventMachine::Synchrony::ConnectionPool
def release(fiber)
resume any other pending connections (which will
Release connection assigned to the supplied fiber and
def release(fiber) @available.push(@reserved.delete(fiber.object_id)) if pending = @pending.shift pending.resume end end