Spring Integration

Uses of Interface
org.springframework.integration.ip.tcp.connection.TcpConnection

Packages that use TcpConnection
org.springframework.integration.ip.tcp   
org.springframework.integration.ip.tcp.connection All things related to tcp connections - client and server factories; listener and sender interfaces. 
 

Uses of TcpConnection in org.springframework.integration.ip.tcp
 

Fields in org.springframework.integration.ip.tcp declared as TcpConnection
protected  TcpConnection TcpSendingMessageHandler.connection
           
 

Fields in org.springframework.integration.ip.tcp with type parameters of type TcpConnection
protected  Map<String,TcpConnection> TcpSendingMessageHandler.connections
           
 

Methods in org.springframework.integration.ip.tcp that return TcpConnection
protected  TcpConnection TcpSendingMessageHandler.getConnection()
           
 

Methods in org.springframework.integration.ip.tcp with parameters of type TcpConnection
 void TcpSendingMessageHandler.addNewConnection(TcpConnection connection)
           
 void TcpSendingMessageHandler.removeDeadConnection(TcpConnection connection)
           
 

Uses of TcpConnection in org.springframework.integration.ip.tcp.connection
 

Classes in org.springframework.integration.ip.tcp.connection that implement TcpConnection
 class AbstractTcpConnection
          Base class for TcpConnections.
 class TcpNetConnection
          A TcpConnection that uses and underlying Socket.
 class TcpNioConnection
          A TcpConnection that uses and underlying SocketChannel.
 

Methods in org.springframework.integration.ip.tcp.connection that return TcpConnection
 TcpConnection ConnectionFactory.getConnection()
           
 TcpConnection AbstractServerConnectionFactory.getConnection()
          Not supported because the factory manages multiple connections and this method cannot discriminate.
 

Methods in org.springframework.integration.ip.tcp.connection with parameters of type TcpConnection
 void TcpSender.addNewConnection(TcpConnection connection)
          When we are using sockets owned by a TcpListener, this method is called each time a new connection is made.
protected  void AbstractServerConnectionFactory.initializeConnection(TcpConnection connection, Socket socket)
          Transfers attributes such as converters, singleUse etc to a new connection.
protected  void AbstractClientConnectionFactory.initializeConnection(TcpConnection connection, Socket socket)
          Transfers attributes such as converters, singleUse etc to a new connection.
 void TcpSender.removeDeadConnection(TcpConnection connection)
          When we are using sockets owned by a TcpListener, this method is called each time a connection is closed.
 Message<Object> TcpMessageMapper.toMessage(TcpConnection connection)
           
 


Spring Integration

Copyright © 2010. All Rights Reserved.