Uses of Interface
org.forgerock.opendj.ldap.ConnectionPool
-
Packages that use ConnectionPool Package Description org.forgerock.opendj.ldap Classes and interfaces for core types including connections, entries, and attributes. -
-
Uses of ConnectionPool in org.forgerock.opendj.ldap
Classes in org.forgerock.opendj.ldap that implement ConnectionPool Modifier and Type Class Description class
SharedConnectionPool
A connection pool implementation for shared connections.Methods in org.forgerock.opendj.ldap that return ConnectionPool Modifier and Type Method Description static ConnectionPool
LdapClients. newCachedConnectionPool(LdapClient client)
Creates a new connection pool which creates new connections as needed using the provided LDAP client, but will reuse previously allocated connections when they are available.static ConnectionPool
LdapClients. newCachedConnectionPool(LdapClient client, int corePoolSize, int maximumPoolSize, long idleTimeout, TimeUnit unit)
Creates a new connection pool which creates new connections as needed using the provided LDAP client, but will reuse previously allocated connections when they are available.static ConnectionPool
LdapClients. newCachedConnectionPool(LdapClient client, int corePoolSize, int maximumPoolSize, long idleTimeout, TimeUnit unit, ScheduledExecutorService scheduler)
Creates a new connection pool which creates new connections as needed using the provided LDAP client, but will reuse previously allocated connections when they are available.static ConnectionPool
LdapClients. newFixedConnectionPool(LdapClient client, int poolSize)
Creates a new connection pool which will maintainpoolSize
connections created using the provided LDAP client.
-