Interface TcpNioConnectionSupport
- All Known Implementing Classes:
 DefaultTcpNioConnectionSupport,DefaultTcpNioSSLConnectionSupport
- Functional Interface:
 - This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
 
@FunctionalInterface public interface TcpNioConnectionSupport
Used by NIO connection factories to instantiate a 
TcpNioConnection object.
 Implementations for SSL and non-SSL TcpNioConnections are provided.- Since:
 - 2.2
 - Author:
 - Gary Russell
 
- 
Method Summary
Modifier and Type Method Description TcpNioConnectioncreateNewConnection(SocketChannel socketChannel, boolean server, boolean lookupHost, ApplicationEventPublisher applicationEventPublisher, String connectionFactoryName)Create a newTcpNioConnectionobject wrapping theSocketChannel. 
- 
Method Details
- 
createNewConnection
TcpNioConnection createNewConnection(SocketChannel socketChannel, boolean server, boolean lookupHost, @Nullable ApplicationEventPublisher applicationEventPublisher, String connectionFactoryName)Create a newTcpNioConnectionobject wrapping theSocketChannel.- Parameters:
 socketChannel- the SocketChannel.server- true if this connection is a server connection.lookupHost- true if hostname lookup should be performed, otherwise the connection will be identified using the ip address.applicationEventPublisher- the publisher to which OPEN, CLOSE and EXCEPTION events will be sent; may be null if event publishing is not required.connectionFactoryName- the name of the connection factory creating this connection; used during event publishing, may be null, in which case "unknown" will be used.- Returns:
 - the TcpNioConnection
 
 
 -