4546474849505152535455
return new DBConnection(server); } public <T> T execute(DBConversation<T> conversation) { checkPoolStatus(); Connection connection = null; try { connection = borrow(); return conversation.execute(connection); } finally { try {
67686970717273747576
return execute(conversation); } public void close() { shuttingDown = true; Connection connection; while ((connection = getNext(false)) != null) { connection.close(); } }