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 |
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 |
TcpOutboundGateway.setConnectionFactory(AbstractConnectionFactory connectionFactory) |
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
TcpConnection s
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
TcpNetConnection s. |
class |
TcpNetServerConnectionFactory
Implements a server connection factory that produces
TcpNetConnection s using
a ServerSocket . |
class |
TcpNioClientConnectionFactory
A client connection factory that creates
TcpNioConnection s. |
class |
TcpNioServerConnectionFactory
/**
Implements a server connection factory that produces
TcpNioConnection s 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 © 2017. All rights reserved.