Uses of Interface
org.objectweb.jonathan.apis.protocols.ip.IpConnection

Packages that use IpConnection
org.objectweb.david.libs.resources.giop Provides an implementation for GIOP TCP/IP connection management. 
org.objectweb.jonathan.apis.protocols.ip Provides a set of classes and interfaces refining the binding abstractions in the case of IP protocols, and introduces some connection management abstractions. 
org.objectweb.jonathan.libs.resources.tcpip Provides a default implementation for TCP/IP connection management. 
 

Uses of IpConnection in org.objectweb.david.libs.resources.giop
 

Methods in org.objectweb.david.libs.resources.giop that return IpConnection
 IpConnection GIOPConnectionFactory.newCltConnection(java.lang.String host, int port, IpSession session)
          Returns a new client connection.
 

Uses of IpConnection in org.objectweb.jonathan.apis.protocols.ip
 

Methods in org.objectweb.jonathan.apis.protocols.ip that return IpConnection
 IpConnection UdpConnectionMgr.newConnection(java.lang.String host, int port, IpSession session)
           
 IpConnection TcpIpConnectionMgr.newCltConnection(java.lang.String host, int port, IpSession session)
          Returns a new client connection.
 IpConnection TcpIpSrvConnectionFactory.newSrvConnection(IpSession session)
          Returns a new connection for the provided session, obtained from the encapuslated server socket.
 

Uses of IpConnection in org.objectweb.jonathan.libs.resources.tcpip
 

Classes in org.objectweb.jonathan.libs.resources.tcpip that implement IpConnection
 class JConnectionMgr.Connection
          Implementation of TcpIpConnection.
 

Methods in org.objectweb.jonathan.libs.resources.tcpip that return IpConnection
 IpConnection JConnectionMgr.newCltConnection(java.lang.String host, int port, IpSession session)
          Returns a new client connection.
 IpConnection IPv4ConnectionFactory.newCltConnection(java.lang.String host, int port, IpSession session)
          Builds a new client-side connection with the provided parameters.
 

Methods in org.objectweb.jonathan.libs.resources.tcpip with parameters of type IpConnection
protected  JConnectionMgr.Connection JConnectionMgr.newCltConnection(IpConnection connection)
          Builds a new client-side connection encapsulating the provided connection.
 

Constructors in org.objectweb.jonathan.libs.resources.tcpip with parameters of type IpConnection
JConnectionMgr.Connection(IpConnection delegate)
          Builds a new connection.