ServerSocket.implAccept

ServerSocket.implAccept

Class Overview | Class Members | This Package | All Packages

Syntax
protected final void implAccept( Socket s ) throws IOException
Description
Subclasses of ServerSocket use this method to override accept() to return their own subclass of socket. So a FooServerSocket will typically hand this method an empty FooSocket(). On return from implAccept the FooSocket will be connected to a client.