All Downloads are FREE. Search and download functionalities are using the official Maven repository.

bitronix.tm.resource.jdbc.ConnectionCustomizer Maven / Gradle / Ivy

There is a newer version: 2.1.4
Show newest version
package bitronix.tm.resource.jdbc;

import java.sql.Connection;

/**
 * Listener of connections created by a PoolingDataSource. Implementations of this class must be serializable
 * and are handed raw, physical database Connections
 *
 * @author Ludovic Orban
 */
public interface ConnectionCustomizer {

    /**
     * Called when the physical connection is created.
     * @param connection the physical connection.
     * @param uniqueName the PoolingDataSource unique name.
     */
    public void onAcquire(Connection connection, String uniqueName);

    /**
     * Called when the physical connection is destroyed.
     * @param connection the physical connection.
     * @param uniqueName the PoolingDataSource unique name.
     */
    public void onDestroy(Connection connection, String uniqueName);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy