FileDocCategorySizeDatePackage
CodecServerSocket.javaAPI DocExample459Thu Mar 30 13:48:50 BST 2000tuning.distrib.rmi

CodecServerSocket

public class CodecServerSocket extends ServerSocket

Fields Summary
Constructors Summary
public CodecServerSocket(int port)

    super(port);
  
Methods Summary
public java.net.Socketaccept()

    //see the ServerSocket.implAccept() docs for this weird implementation
    Socket s = new CodecSocket();
    implAccept(s);
    return s;