Uses of Class
org.springframework.integration.ip.tcp.connection.AbstractConnectionFactory
Package
Description
Provides classes for configuration - parsers, namespace handlers, factory beans.
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.
Provides utilities for IP support.
-
Uses of AbstractConnectionFactory in org.springframework.integration.ip.config
Modifier and TypeMethodDescriptionprotected AbstractConnectionFactory
TcpConnectionFactoryFactoryBean.createInstance()
-
Uses of AbstractConnectionFactory in org.springframework.integration.ip.dsl
Modifier and TypeClassDescriptionclass
AbstractConnectionFactorySpec<S extends AbstractConnectionFactorySpec<S,
C>, C extends AbstractConnectionFactory> Modifier and TypeFieldDescriptionprotected final AbstractConnectionFactory
TcpInboundChannelAdapterSpec.connectionFactory
protected final AbstractConnectionFactory
TcpInboundGatewaySpec.connectionFactory
protected final AbstractConnectionFactory
TcpOutboundChannelAdapterSpec.connectionFactory
Modifier and TypeMethodDescriptionstatic TcpInboundChannelAdapterSpec
Tcp.inboundAdapter
(AbstractConnectionFactory connectionFactory) Create an inbound channel adapter using the supplied connection factory.static TcpInboundGatewaySpec
Tcp.inboundGateway
(AbstractConnectionFactory connectionFactory) Create an inbound gateway using the supplied connection factory.Tcp.outboundAdapter
(AbstractConnectionFactory connectionFactory) Create an outbound gateway using the supplied connection factory.ModifierConstructorDescriptionprotected
TcpInboundChannelAdapterSpec
(AbstractConnectionFactory connectionFactoryBean) Construct an instance using an existing spring-managed connection factory.protected
TcpInboundGatewaySpec
(AbstractConnectionFactory connectionFactoryBean) Construct an instance using an existing spring-managed connection factory.protected
TcpOutboundChannelAdapterSpec
(AbstractConnectionFactory connectionFactoryBean) Construct an instance using an existing spring-managed connection factory. -
Uses of AbstractConnectionFactory in org.springframework.integration.ip.tcp
Modifier and TypeMethodDescriptionprotected AbstractConnectionFactory
TcpOutboundGateway.getConnectionFactory()
Modifier and TypeMethodDescriptionvoid
TcpInboundGateway.setConnectionFactory
(AbstractConnectionFactory connectionFactory) void
TcpReceivingChannelAdapter.setConnectionFactory
(AbstractConnectionFactory connectionFactory) Sets the client or server connection factory; for this (an inbound adapter), if the factory is a client connection factory, the sockets are owned by a sending channel adapter and this adapter is used to receive replies.void
TcpSendingMessageHandler.setConnectionFactory
(AbstractConnectionFactory connectionFactory) Sets the client or server connection factory; for this (an outbound adapter), if the factory is a server connection factory, the sockets are owned by a receiving channel adapter and this adapter is used to send replies. -
Uses of AbstractConnectionFactory in org.springframework.integration.ip.tcp.connection
Modifier and TypeClassDescriptionclass
Abstract class for client connection factories; client connection factories establish outgoing connections.class
Base class for all server connection factories.class
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
Implements a server connection factory that producesTcpNetConnection
s using aServerSocket
.class
A client connection factory that createsTcpNioConnection
s.class
/** Implements a server connection factory that producesTcpNioConnection
s using aServerSocketChannel
.class
A client connection factory that binds a connection to a thread.ModifierConstructorDescriptionClientModeConnectionManager
(AbstractConnectionFactory clientConnectionFactory) -
Uses of AbstractConnectionFactory in org.springframework.integration.ip.util
Modifier and TypeMethodDescriptionstatic void
TestingUtilities.waitUntilFactoryHasThisNumberOfConnections
(AbstractConnectionFactory factory, int n) Wait for up to 10 seconds for the connection factory to have the specified number of connections.