Uses of Interface
peerbase.socket.SocketInterface

Packages that use SocketInterface
peerbase   
peerbase.socket   
 

Uses of SocketInterface in peerbase
 

Constructors in peerbase with parameters of type SocketInterface
PeerConnection(PeerInfo info, SocketInterface socket)
          Constructs a connection for which a socket has already been opened.
PeerMessage(SocketInterface s)
          Constructs a new PeerMessage object by reading data from the given socket connection.
 

Uses of SocketInterface in peerbase.socket
 

Classes in peerbase.socket that implement SocketInterface
 class NormalSocket
          Encapsulates the standard Socket object of the Java library to fit the SocketInterface of the PeerBase system.
 

Methods in peerbase.socket that return SocketInterface
abstract  SocketInterface SocketFactory.makeSocket(java.net.Socket socket)
          Constructs a new SocketInterface object, encapsulating a standard Java API Socket object.
 SocketInterface NormalSocketFactory.makeSocket(java.net.Socket socket)
           
abstract  SocketInterface SocketFactory.makeSocket(java.lang.String host, int port)
          Constructs a new socket object, appropriate to the purpose of the factory.
 SocketInterface NormalSocketFactory.makeSocket(java.lang.String host, int port)