public interface

PooledConnectionFactory

com.sun.jndi.ldap.pool.PooledConnectionFactory

Class Overview

Represents a factory that creates PooledConnection. The user of the connection pool should provide an implementation of this interface and pass it to the Pool.getPooledConnection() method. The implementation of the factory should contain all the information necessary to create a PooledConnection.

Summary

Public Methods
abstract PooledConnection createPooledConnection(PoolCallback pcb)
Creates a pooled connection.

Public Methods

public abstract PooledConnection createPooledConnection (PoolCallback pcb)

Creates a pooled connection.

Parameters
pcb callback responsible for removing and releasing the pooled connection from the pool.