Uses of Interface
org.ldaptive.transport.Transport
-
Packages that use Transport Package Description org.ldaptive org.ldaptive.control.util org.ldaptive.transport org.ldaptive.transport.netty -
-
Uses of Transport in org.ldaptive
Fields in org.ldaptive declared as Transport Modifier and Type Field Description private Transport
DefaultConnectionFactory. transport
Transport used by this factory.Methods in org.ldaptive that return Transport Modifier and Type Method Description Transport
DefaultConnectionFactory. getTransport()
Returns the ldap transport.Transport
PooledConnectionFactory. getTransport()
Returns the ldap transport.Methods in org.ldaptive with parameters of type Transport Modifier and Type Method Description static DefaultConnectionFactory.Builder
DefaultConnectionFactory. builder(Transport t)
Creates a builder for this class.static PooledConnectionFactory.Builder
PooledConnectionFactory. builder(Transport t)
Creates a builder for this class.static SingleConnectionFactory.Builder
SingleConnectionFactory. builder(Transport t)
Creates a builder for this class.Constructors in org.ldaptive with parameters of type Transport Constructor Description Builder(Transport t)
Builder(Transport t)
Builder(Transport transport)
DefaultConnectionFactory(String ldapUrl, Transport t)
Creates a new default connection factory.DefaultConnectionFactory(ConnectionConfig cc, Transport t)
Creates a new default connection factory.DefaultConnectionFactory(Transport t)
Creates a new default connection factory.PooledConnectionFactory(String ldapUrl, Transport t)
Creates a new pooled connection factory.PooledConnectionFactory(ConnectionConfig cc, Transport t)
Creates a new pooled connection factory.PooledConnectionFactory(Transport t)
Creates a new pooled connection factory.SingleConnectionFactory(String ldapUrl, Transport t)
Creates a new single connection factory.SingleConnectionFactory(ConnectionConfig cc, Transport t)
Creates a new single connection factory.SingleConnectionFactory(Transport t)
Creates a new single connection factory. -
Uses of Transport in org.ldaptive.control.util
Methods in org.ldaptive.control.util that return Transport Modifier and Type Method Description private static Transport
SyncReplRunner. createTransport()
Returns a transport configured to use for sync repl.Methods in org.ldaptive.control.util with parameters of type Transport Modifier and Type Method Description static SingleConnectionFactory
SyncReplRunner. createConnectionFactory(Transport transport, ConnectionConfig config, ConnectionValidator validator)
Creates a new single connection factory. -
Uses of Transport in org.ldaptive.transport
Methods in org.ldaptive.transport that return Transport Modifier and Type Method Description static Transport
TransportFactory. getTransport(Class<? extends ConnectionFactory> clazz)
TheTransportFactory.TRANSPORT_OVERRIDE
map is checked and that class is loaded if provided. -
Uses of Transport in org.ldaptive.transport.netty
Classes in org.ldaptive.transport.netty that implement Transport Modifier and Type Class Description class
ConnectionFactoryTransport
Creates netty connections using the best fit event loop group based on the operating system.static class
ConnectionFactoryTransport.DualThread
AConnectionFactoryTransport
configured with two underlying threads.static class
ConnectionFactoryTransport.SingleThread
AConnectionFactoryTransport
configured with a single underlying thread.class
ConnectionTransport
Creates netty connections using the best fit event loop group based on the operating system.static class
ConnectionTransport.DualThread
AConnectionTransport
configured with two underlying threads.static class
ConnectionTransport.SingleThread
AConnectionTransport
configured with a single underlying thread.class
NettyConnectionFactoryTransport
Creates netty connections with configured event loops.class
NioConnectionFactoryTransport
Creates netty connections using anNioEventLoopGroup
.class
NioConnectionTransport
Creates netty connections using anNioEventLoopGroup
.class
NioSingletonTransport
Creates netty connections using a single, sharedNioEventLoopGroup
.class
SingletonTransport
Creates netty connections using a single, sharedEventLoopGroup
using the best fit event loop group based on the operating system.
-