public abstract class AbstractServerConnectionFactory extends AbstractConnectionFactory implements java.lang.Runnable, OrderlyShutdownCapable
DEFAULT_REPLY_TIMEOUT, lifecycleMonitor
logger
Constructor and Description |
---|
AbstractServerConnectionFactory(int port)
The port on which the factory will listen.
|
Modifier and Type | Method and Description |
---|---|
int |
afterShutdown()
Called after normal shutdown of schedulers, executors etc,
and after the shutdown delay has elapsed, but before any
forced shutdown of any remaining active scheduler/executor
threads.Can optionally return the number of active messages
still in process.
|
int |
beforeShutdown()
Called before shutdown begins.
|
int |
getBacklog()
The number of sockets in the server connection backlog.
|
TcpConnection |
getConnection()
Not supported because the factory manages multiple connections and this
method cannot discriminate.
|
java.lang.String |
getLocalAddress() |
protected void |
initializeConnection(TcpConnectionSupport connection,
java.net.Socket socket)
Transfers attributes such as (de)serializer, singleUse etc to a new connection.
|
boolean |
isListening() |
protected boolean |
isShuttingDown() |
protected void |
postProcessServerSocket(java.net.ServerSocket serverSocket) |
void |
setBacklog(int backlog)
The number of sockets in the connection backlog.
|
protected void |
setListening(boolean listening) |
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.
|
void |
start() |
addConnection, checkActive, close, closeConnection, doAccept, getApplicationEventPublisher, getDeserializer, getHost, getListener, getMapper, getOpenConnectionIds, getPhase, getPort, getSender, getSerializer, getSoLinger, getSoReceiveBufferSize, getSoSendBufferSize, getSoTimeout, getSoTrafficClass, getTaskExecutor, getTcpSocketSupport, harvestClosedConnections, isActive, isAutoStartup, isLookupHost, isRunning, isSingleUse, isSoKeepAlive, isSoTcpNoDelay, processNioSelections, registerListener, registerSender, setActive, setApplicationEventPublisher, setDeserializer, setInterceptorFactoryChain, setLookupHost, setMapper, setNioHarvestInterval, setSerializer, setSingleUse, setSocketAttributes, setSoKeepAlive, setSoLinger, setSoReceiveBufferSize, setSoSendBufferSize, setSoTcpNoDelay, setSoTimeout, setSoTrafficClass, setTaskExecutor, setTcpSocketSupport, stop, stop, wrapConnection
afterPropertiesSet, getApplicationContextId, getBeanFactory, getComponentName, getComponentType, getConversionService, getIntegrationProperties, getIntegrationProperty, getTaskScheduler, onInit, setApplicationContext, setBeanFactory, setBeanName, setComponentName, setConversionService, setTaskScheduler, toString
public AbstractServerConnectionFactory(int port)
port
- public void start()
start
in interface org.springframework.context.Lifecycle
start
in class AbstractConnectionFactory
public TcpConnection getConnection() throws java.lang.Exception
getConnection
in interface ConnectionFactory
java.lang.Exception
protected void setListening(boolean listening)
listening
- the listening to setpublic boolean isListening()
protected boolean isShuttingDown()
protected void initializeConnection(TcpConnectionSupport connection, java.net.Socket socket)
connection
- The new connection.socket
- The new socket.protected void postProcessServerSocket(java.net.ServerSocket serverSocket)
public java.lang.String getLocalAddress()
public void setLocalAddress(java.lang.String localAddress)
localAddress
- the ip address of the required adapter.public int getBacklog()
public void setBacklog(int backlog)
backlog
- public int beforeShutdown()
OrderlyShutdownCapable
beforeShutdown
in interface OrderlyShutdownCapable
public int afterShutdown()
OrderlyShutdownCapable
afterShutdown
in interface OrderlyShutdownCapable