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

Packages that use IpSession
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 IpSession in org.objectweb.david.libs.resources.giop
 

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

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

Methods in org.objectweb.jonathan.apis.protocols.ip that return IpSession
 IpSession IpConnection.getSession()
          Returns the session attached to this connection.
 

Methods in org.objectweb.jonathan.apis.protocols.ip with parameters of type IpSession
 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.
 void IpConnection.setSession(IpSession session)
          Attaches a new session to this connection.
 IpConnection TcpIpSrvConnectionFactory.newSrvConnection(IpSession session)
          Returns a new connection for the provided session, obtained from the encapuslated server socket.
 

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

Methods in org.objectweb.jonathan.libs.resources.tcpip that return IpSession
 IpSession JConnectionMgr.Connection.getSession()
          Returns the session attached to this connection.
 

Methods in org.objectweb.jonathan.libs.resources.tcpip with parameters of type IpSession
 IpConnection JConnectionMgr.newCltConnection(java.lang.String host, int port, IpSession session)
          Returns a new client connection.
 void JConnectionMgr.Connection.setSession(IpSession session)
          Attaches a new session to this connection.
 IpConnection IPv4ConnectionFactory.newCltConnection(java.lang.String host, int port, IpSession session)
          Builds a new client-side connection with the provided parameters.
protected  org.objectweb.jonathan.libs.resources.tcpip.IPv4ConnectionFactory.Connection IPv4ConnectionFactory.newSrvConnection(java.net.Socket socket, IpSession session, java.lang.String host, int port)
          Builds a new server-side connection with the provided parameters.