Uses of Class
solar.service.transport.SocketAddress

Packages that use SocketAddress
solar.service.transport Contains the data transport service. 
 

Uses of SocketAddress in solar.service.transport
 

Fields in solar.service.transport declared as SocketAddress
private  SocketAddress TcpConnection._peer
          The peer address.
 

Methods in solar.service.transport that return SocketAddress
 SocketAddress TcpConnection.receivePeerAddress()
          Receive peer address from this connection.
 

Methods in solar.service.transport with parameters of type SocketAddress
protected  TcpConnection TcpObjectTransport.makeTcpConnection(java.net.Socket socket, SocketAddress peer)
           
 void TcpConnection.sendLocalAddress(SocketAddress addr)
          Send local address to peer through this connection.
protected  TcpConnection TcpTransport.makeTcpConnection(java.net.Socket socket, SocketAddress peer)
          Create a TcpConenction based on the socket and peer address.
 void TcpTransport.notifyConnectionOpened(SocketAddress peer)
          Notify transport listeners about new connection.
 void TcpTransport.notifyConnectionClosed(SocketAddress peer)
          Notify transport listeners about closed connection.
protected  TcpConnection TcpTransport.getConnection(SocketAddress peer)
          Get the connection for specified peer address.
protected  void TcpTransport.addConnection(SocketAddress peer, TcpConnection conn)
          Add a new connection to peer address.
protected  void TcpTransport.removeConnection(SocketAddress peer)
          Remove a connection to a peer address.
protected  TcpConnection TcpTransport.openConnection(SocketAddress dest)
          Open a new connection to a specified address.
private  PastryTransport PastryTransportService.getPastryTransport(SocketAddress bootstrap)
          Return the instance of Pastry transport layer.
 

Constructors in solar.service.transport with parameters of type SocketAddress
TcpConnection(boolean serialize, java.net.Socket sock, SocketAddress peer)
          Constructs a new connection from a local connected socket.