Uses of Class
org.springframework.integration.ip.tcp.connection.AbstractClientConnectionFactory
Package
Description
Provides TCP/UDP Component support for the Java DSL.
Base package for TCP Support.
All things related to tcp connections - client and
server factories; listener and sender interfaces.
-
Uses of AbstractClientConnectionFactory in org.springframework.integration.ip.dsl
Modifier and TypeClassDescriptionclass
TcpClientConnectionFactorySpec<S extends TcpClientConnectionFactorySpec<S,
C>, C extends AbstractClientConnectionFactory> Modifier and TypeFieldDescriptionprotected final AbstractClientConnectionFactory
TcpOutboundGatewaySpec.connectionFactory
Modifier and TypeMethodDescriptionstatic TcpOutboundGatewaySpec
Tcp.outboundGateway
(AbstractClientConnectionFactory connectionFactory) Create an outbound gateway using the supplied client connection factory.ModifierConstructorDescriptionTcpOutboundGatewaySpec
(AbstractClientConnectionFactory connectionFactoryBean) Construct an instance using an existing spring-managed connection factory. -
Uses of AbstractClientConnectionFactory in org.springframework.integration.ip.tcp
Modifier and TypeMethodDescriptionvoid
TcpOutboundGateway.setConnectionFactory
(AbstractClientConnectionFactory connectionFactory) -
Uses of AbstractClientConnectionFactory in org.springframework.integration.ip.tcp.connection
Modifier and TypeClassDescriptionclass
Connection factory that caches connections from the underlying target factory.class
Given a list of connection factories, serves upTcpConnection
s that can iterate over a connection from each factory until the write succeeds or the list is exhausted.class
A client connection factory that createsTcpNetConnection
s.class
A client connection factory that createsTcpNioConnection
s.class
A client connection factory that binds a connection to a thread.ModifierConstructorDescriptionCachingClientConnectionFactory
(AbstractClientConnectionFactory target, int poolSize) Construct a caching connection factory that delegates to the provided factory, with the provided pool size.ThreadAffinityClientConnectionFactory
(AbstractClientConnectionFactory connectionFactory) ModifierConstructorDescriptionConstruct an instance with the provided delegate factories.