org.logicalcobwebs.proxool
Interface ConfigurationListenerIF
- CompositeConfigurationListener, ConnectionPoolMBean
public interface ConfigurationListenerIF
Listens to any changes made to a
definition
.
This gives you the opportunity to persist a definition.
String alias = "myPool";
ConfigurationListenerIF myConfigurationListener = new MyConfigurationListener();
ProxoolFacade.addConfigurationListener
(alias, myConfigurationListener);
$Revision: 1.5 $, $Date: 2003/03/03 11:11:56 $- billhorsman
- $Author: billhorsman $ (current maintainer)
definitionUpdated
public void definitionUpdated(ConnectionPoolDefinitionIF connectionPoolDefinition,
Properties completeInfo,
Properties changedInfo)
Gets called once after a pool has been updated.
connectionPoolDefinition
- the new definitioncompleteInfo
- the properties that could be used to create this definitionchangedInfo
- only the properties that have changed since the pool was
registered, or this method was las called.