/* * Copyright 2002-2016 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.integration.ip.tcp.connection; import java.nio.channels.SocketChannel; import org.springframework.context.ApplicationEventPublisher; /** * Used by NIO connection factories to instantiate a {@link TcpNioConnection} object. * Implementations for SSL and non-SSL {@link TcpNioConnection}s are provided. * @author Gary Russell * @since 2.2 * */ public interface TcpNioConnectionSupport { /** * Create a new {@link TcpNioConnection} object wrapping the {@link SocketChannel} * @param socketChannel the SocketChannel. * @param server true if this connection is a server connection. * @param lookupHost true if hostname lookup should be performed, otherwise the connection will * be identified using the ip address. * @param applicationEventPublisher the publisher to which OPEN, CLOSE and EXCEPTION events will * be sent; may be null if event publishing is not required. * @param connectionFactoryName the name of the connection factory creating this connection; used * during event publishing, may be null, in which case "unknown" will be used. * @return the TcpNioConnection * @throws Exception Any exception. */ TcpNioConnection createNewConnection(SocketChannel socketChannel, boolean server, boolean lookupHost, ApplicationEventPublisher applicationEventPublisher, String connectionFactoryName) throws Exception; }