| Package | Description |
|---|---|
| org.springframework.integration.ip.config |
Provides classes for configuration - parsers, namespace handlers, factory beans.
|
| org.springframework.integration.ip.tcp |
Base package for TCP Support.
|
| org.springframework.integration.ip.tcp.connection |
All things related to tcp connections - client and
server factories; listener and sender interfaces.
|
| org.springframework.integration.ip.util |
Provides utilities for IP support.
|
| Modifier and Type | Method and Description |
|---|---|
protected AbstractConnectionFactory |
TcpConnectionFactoryFactoryBean.createInstance() |
| Modifier and Type | Method and Description |
|---|---|
protected AbstractConnectionFactory |
TcpOutboundGateway.getConnectionFactory() |
| Modifier and Type | Method and Description |
|---|---|
void |
TcpOutboundGateway.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.
|
void |
TcpInboundGateway.setConnectionFactory(AbstractConnectionFactory connectionFactory)
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractClientConnectionFactory
Abstract class for client connection factories; client connection factories
establish outgoing connections.
|
class |
AbstractServerConnectionFactory
Base class for all server connection factories.
|
class |
CachingClientConnectionFactory |
class |
FailoverClientConnectionFactory
Given a list of connection factories, serves up
TcpConnections
that can iterate over a connection from each factory until the write
succeeds or the list is exhausted. |
class |
TcpNetClientConnectionFactory
A client connection factory that creates
TcpNetConnections. |
class |
TcpNetServerConnectionFactory
Implements a server connection factory that produces
TcpNetConnections using
a ServerSocket. |
class |
TcpNioClientConnectionFactory
A client connection factory that creates
TcpNioConnections. |
class |
TcpNioServerConnectionFactory
/**
Implements a server connection factory that produces
TcpNioConnections using
a ServerSocketChannel. |
| Constructor and Description |
|---|
ClientModeConnectionManager(AbstractConnectionFactory clientConnectionFactory) |
| Modifier and Type | Method and Description |
|---|---|
static void |
TestingUtilities.waitUntilFactoryHasThisNumberOfConnections(AbstractConnectionFactory factory,
int n)
Wait for up to 10 seconds for the connection factory to have the specified number
of connections.
|
Copyright © 2016. All rights reserved.