FileDocCategorySizeDatePackage
ConnectorConnectionPoolStatsImpl.javaAPI DocGlassfish v2 API3223Fri May 04 22:35:18 BST 2007com.sun.enterprise.resource.monitor

ConnectorConnectionPoolStatsImpl

public class ConnectorConnectionPoolStatsImpl extends ConnectionPoolStatsImpl implements com.sun.enterprise.admin.monitor.stats.ConnectorConnectionPoolStats
This class provides an implementation of the ConnectorConnectionPoolStats interface. The implementations of the interface methods primarily delegate the task of statistic gathering to the Pool.
author
Aditya Gore, Sivakumar Thyagarajan

Fields Summary
Constructors Summary
public ConnectorConnectionPoolStatsImpl(com.sun.enterprise.resource.MonitorableResourcePool pool)
The constructor for the class

param
pool - The resource pool whose stats we are storing

        super();
        String statsInterface = "com.sun.enterprise.admin.monitor.stats.ConnectorConnectionPoolStats";
        pool_ = pool;
        initializeStatistics();
        try {
            gsImpl = new GenericStatsImpl(statsInterface, this );
        } catch( ClassNotFoundException cnfe ) {
            _logger.log( Level.INFO, "poolmon.cnfe", "GenericStatsImpl" );
        }
    
Methods Summary