Uses of Interface
org.forgerock.opendj.ldap.ConnectionPool
Packages that use ConnectionPool
Package
Description
Classes and interfaces for core types including connections, entries, and
attributes.
-
Uses of ConnectionPool in org.forgerock.opendj.ldap
Methods in org.forgerock.opendj.ldap that return ConnectionPoolModifier and TypeMethodDescriptionstatic ConnectionPoolConnections.newCachedConnectionPool(ConnectionFactory factory) Creates a new connection pool which creates new connections as needed using the provided connection factory, but will reuse previously allocated connections when they are available.static ConnectionPoolConnections.newCachedConnectionPool(ConnectionFactory factory, int corePoolSize, int maximumPoolSize, long idleTimeout, TimeUnit unit) Creates a new connection pool which creates new connections as needed using the provided connection factory, but will reuse previously allocated connections when they are available.static ConnectionPoolConnections.newCachedConnectionPool(ConnectionFactory factory, int corePoolSize, int maximumPoolSize, long idleTimeout, TimeUnit unit, ScheduledExecutorService scheduler) Creates a new connection pool which creates new connections as needed using the provided connection factory, but will reuse previously allocated connections when they are available.static ConnectionPoolConnections.newFixedConnectionPool(ConnectionFactory factory, int poolSize) Creates a new connection pool which will maintainpoolSizeconnections created using the provided connection factory.