Uses of Class
org.springframework.integration.ip.tcp.connection.TcpConnectionSupport
Package
Description
All things related to tcp connections - client and
server factories; listener and sender interfaces.
-
Uses of TcpConnectionSupport in org.springframework.integration.ip.tcp.connection
Modifier and TypeClassDescriptionclass
Base class forTcpConnectionInterceptor
s; passes all method calls through to the underlyingTcpConnection
.class
A TcpConnection that uses and underlyingSocket
.class
A TcpConnection that uses and underlyingSocketChannel
.class
Implementation ofTcpConnection
supporting SSL/TLS over NIO.Modifier and TypeFieldDescriptionprotected final Map<String,
TcpConnectionSupport> AbstractConnectionFactory.connections
Modifier and TypeMethodDescriptionprotected TcpConnectionSupport
AbstractClientConnectionFactory.buildNewConnection()
protected TcpConnectionSupport
TcpNetClientConnectionFactory.buildNewConnection()
protected TcpConnectionSupport
TcpNioClientConnectionFactory.buildNewConnection()
AbstractClientConnectionFactory.getConnection()
Obtain a connection - ifAbstractConnectionFactory.setSingleUse(boolean)
was called with true, a new connection is returned; otherwise a single connection is reused for all requests while the connection remains open.ThreadAffinityClientConnectionFactory.getConnection()
protected TcpConnectionSupport
AbstractClientConnectionFactory.getTheConnection()
TcpConnectionInterceptorSupport.getTheConnection()
Return the underlying connection (or next interceptor).protected TcpConnectionSupport
AbstractClientConnectionFactory.obtainConnection()
CachingClientConnectionFactory.obtainConnection()
protected TcpConnectionSupport
FailoverClientConnectionFactory.obtainConnection()
protected final TcpConnectionSupport
AbstractClientConnectionFactory.obtainNewConnection()
protected final TcpConnectionSupport
AbstractClientConnectionFactory.obtainSharedConnection()
protected TcpConnectionSupport
AbstractConnectionFactory.wrapConnection
(TcpConnectionSupport connectionArg) Modifier and TypeMethodDescriptionprotected Predicate<TcpConnectionSupport>
AbstractClientConnectionFactory.getConnectionTest()
Get aPredicate
that will be invoked to test a new connection; return true to accept the connection, false the reject.Modifier and TypeMethodDescriptionprotected void
AbstractConnectionFactory.addConnection
(TcpConnectionSupport connection) protected void
AbstractClientConnectionFactory.initializeConnection
(TcpConnectionSupport connection, Socket socket) Transfer attributes such as (de)serializers, singleUse etc to a new connection.protected void
AbstractServerConnectionFactory.initializeConnection
(TcpConnectionSupport connection, Socket socket) Transfers attributes such as (de)serializer, mapper etc to a new connection.protected void
AbstractClientConnectionFactory.setTheConnection
(TcpConnectionSupport theConnection) void
TcpConnectionInterceptorSupport.setTheConnection
(TcpConnectionSupport theConnection) Set the underlying connection (or next interceptor).void
TcpConnectionSupport.setWrapper
(TcpConnectionSupport wrapper) Set the wrapper.protected TcpConnectionSupport
AbstractConnectionFactory.wrapConnection
(TcpConnectionSupport connectionArg) Modifier and TypeMethodDescriptionvoid
AbstractClientConnectionFactory.setConnectionTest
(Predicate<TcpConnectionSupport> connectionTest) Set aPredicate
that will be invoked to test a new connection; return true to accept the connection, false the reject.