org.springframework.integration.ip.tcp.connection
Class AbstractServerConnectionFactory
java.lang.Object
  
org.springframework.integration.ip.tcp.connection.AbstractConnectionFactory
      
org.springframework.integration.ip.tcp.connection.AbstractServerConnectionFactory
- All Implemented Interfaces: 
 - java.lang.Runnable, Lifecycle, Phased, SmartLifecycle, ConnectionFactory
 
- Direct Known Subclasses: 
 - TcpNetServerConnectionFactory, TcpNioServerConnectionFactory
 
public abstract class AbstractServerConnectionFactory
- extends AbstractConnectionFactory
 
Base class for all server connection factories. Server connection factories
 listen on a port for incoming connections and create new TcpConnection objects
 for each new connection.
- Since:
 
  - 2.0
 
 
| Fields inherited from class org.springframework.integration.ip.tcp.connection.AbstractConnectionFactory | 
active, DEFAULT_REPLY_TIMEOUT, deserializer, host, interceptorFactoryChain, listener, logger, mapper, poolSize, port, sender, serializer, singleUse, soTimeout, taskExecutor | 
 
 
| 
Method Summary | 
 TcpConnection | 
getConnection()
 
          Not supported because the factory manages multiple connections and this
 method cannot discriminate. | 
 java.lang.String | 
getLocalAddress()
 
            | 
protected  void | 
initializeConnection(TcpConnection connection,
                     java.net.Socket socket)
 
          Transfers attributes such as (de)serializer, singleUse etc to a new connection. | 
 boolean | 
isListening()
 
            | 
 void | 
setLocalAddress(java.lang.String localAddress)
 
          Used on multi-homed systems to enforce the server to listen 
 on a specfic network address instead of all network adapters. | 
 
| Methods inherited from class org.springframework.integration.ip.tcp.connection.AbstractConnectionFactory | 
close, getHost, getPhase, getPort, getSoLinger, getSoReceiveBufferSize, getSoSendBufferSize, getSoTimeout, getSoTrafficClass, isAutoStartup, isSingleUse, isSoKeepAlive, isSoTcpNoDelay, registerListener, registerSender, setDeserializer, setInterceptorFactoryChain, setMapper, setPoolSize, setSerializer, setSingleUse, setSocketAttributes, setSoKeepAlive, setSoLinger, setSoReceiveBufferSize, setSoSendBufferSize, setSoTcpNoDelay, setSoTimeout, setSoTrafficClass, setTaskExecutor, start, stop, stop, wrapConnection | 
 
| Methods inherited from class java.lang.Object | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
| Methods inherited from interface java.lang.Runnable | 
run | 
 
 
listening
protected boolean listening
localAddress
protected java.lang.String localAddress
AbstractServerConnectionFactory
public AbstractServerConnectionFactory(int port)
- The port on which the factory will listen.
- Parameters:
 port - 
 
getConnection
public TcpConnection getConnection()
                            throws java.lang.Exception
- Not supported because the factory manages multiple connections and this
 method cannot discriminate.
- Throws:
 java.lang.Exception
 
 
isListening
public boolean isListening()
- Returns:
 - true if the server is listening on the port.
 
 
initializeConnection
protected void initializeConnection(TcpConnection connection,
                                    java.net.Socket socket)
- Transfers attributes such as (de)serializer, singleUse etc to a new connection.
 For single use sockets, enforces a socket timeout (default 10 seconds).
- Parameters:
 connection - The new connection.socket - The new socket.
 
 
getLocalAddress
public java.lang.String getLocalAddress()
- Returns:
 - the localAddress
 
 
setLocalAddress
public void setLocalAddress(java.lang.String localAddress)
- Used on multi-homed systems to enforce the server to listen 
 on a specfic network address instead of all network adapters.
- Parameters:
 localAddress - the ip address of the required adapter.