/* * Copyright (c) 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Florent Guillaume */ package org.eclipse.ecr.core.storage.sql.jdbc; import java.util.ArrayList; import java.util.List; /** * Knows all the {@link JDBCConnection}s in use by a backend, so that they can * notify each other when there's a connection failure. */ public class JDBCConnectionPropagator { public final List<JDBCConnection> connections; // used synchronized public JDBCConnectionPropagator() { connections = new ArrayList<JDBCConnection>(); } public synchronized void addConnection(JDBCConnection connection) { connections.add(connection); } /** * Notifies all connection that they must check their validity. * * @param exclude a connection to exclude, the one from which the request * originates */ public synchronized void checkConnectionValid(JDBCConnection exclude) { for (JDBCConnection c : connections) { if (c != exclude) { c.checkConnectionValid = true; } } } }