All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.mina.core.service.IoConnector Maven / Gradle / Ivy

/**
 * Copyright 2007-2015, Kaazing Corporation. All rights reserved.
 *
 * 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.apache.mina.core.service;

import java.net.SocketAddress;

import org.apache.mina.core.future.ConnectFuture;
import org.apache.mina.core.session.IoSession;
import org.apache.mina.core.session.IoSessionInitializer;

/**
 * Connects to endpoint, communicates with the server, and fires events to
 * {@link IoHandler}s.
 * 

* Please refer to * NetCat * example. *

* You should connect to the desired socket address to start communication, * and then events for incoming connections will be sent to the specified * default {@link IoHandler}. *

* Threads connect to endpoint start automatically when * {@link #connect(SocketAddress)} is invoked, and stop when all * connection attempts are finished. * * @author Apache MINA Project */ public interface IoConnector extends IoService { /** * Returns the connect timeout in seconds. The default value is 1 minute. * * @deprecated * @see getConnectTimeoutMillis() */ int getConnectTimeout(); /** * Returns the connect timeout in milliseconds. The default value is 1 minute. */ long getConnectTimeoutMillis(); /** * Sets the connect timeout in seconds. The default value is 1 minute. * * @deprecated * @see setConnectTimeoutMillis() */ void setConnectTimeout(int connectTimeout); /** * Sets the connect timeout in milliseconds. The default value is 1 minute. */ void setConnectTimeoutMillis(long connectTimeoutInMillis); /** * Returns the default remote address to connect to when no argument * is specified in {@link #connect()} method. */ SocketAddress getDefaultRemoteAddress(); /** * Sets the default remote address to connect to when no argument is * specified in {@link #connect()} method. */ void setDefaultRemoteAddress(SocketAddress defaultRemoteAddress); /** * Connects to the {@link #setDefaultRemoteAddress(SocketAddress) default remote address}. * * @throws IllegalStateException if no default remoted address is set. */ ConnectFuture connect(); /** * Connects to the {@link #setDefaultRemoteAddress(SocketAddress) default * remote address} and invokes the ioSessionInitializer when * the IoSession is created but before {@link IoHandler#sessionCreated(IoSession)} * is invoked. There is no guarantee that the ioSessionInitializer * will be invoked before this method returns. * * @param sessionInitializer the callback to invoke when the {@link IoSession} object is created * * @throws IllegalStateException if no default remote address is set. */ ConnectFuture connect(IoSessionInitializer sessionInitializer); /** * Connects to the specified remote address. * * @return the {@link ConnectFuture} instance which is completed when the * connection attempt initiated by this call succeeds or fails. */ ConnectFuture connect(SocketAddress remoteAddress); /** * Connects to the specified remote address and invokes * the ioSessionInitializer when the IoSession is created but before * {@link IoHandler#sessionCreated(IoSession)} is invoked. There is no * guarantee that the ioSessionInitializer will be invoked before * this method returns. * * @param remoteAddress the remote address to connect to * @param sessionInitializer the callback to invoke when the {@link IoSession} object is created * * @return the {@link ConnectFuture} instance which is completed when the * connection attempt initiated by this call succeeds or fails. */ ConnectFuture connect(SocketAddress remoteAddress, IoSessionInitializer sessionInitializer); /** * Connects to the specified remote address binding to the specified local address. * * @return the {@link ConnectFuture} instance which is completed when the * connection attempt initiated by this call succeeds or fails. */ ConnectFuture connect(SocketAddress remoteAddress, SocketAddress localAddress); /** * Connects to the specified remote address binding to the specified local * address and and invokes the ioSessionInitializer when the * IoSession is created but before {@link IoHandler#sessionCreated(IoSession)} * is invoked. There is no guarantee that the ioSessionInitializer * will be invoked before this method returns. * * @param remoteAddress the remote address to connect to * @param localAddress the local interface to bind to * @param sessionInitializer the callback to invoke when the {@link IoSession} object is created * * @return the {@link ConnectFuture} instance which is completed when the * connection attempt initiated by this call succeeds or fails. */ ConnectFuture connect(SocketAddress remoteAddress, SocketAddress localAddress, IoSessionInitializer sessionInitializer); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy