SocketImplFactory | java.net |
This interface defines a method that
creates SocketImpl objects.
SocketImplFactory objects may be registered to
create SocketImpl objects for the
Socket and ServerSocket
classes. Normal applications never need to use or implement this
interface.
public interface SocketImplFactory {
// Public Instance Methods
SocketImpl createSocketImpl( );
}
Passed To
ServerSocket.setSocketFactory( ),
Socket.setSocketImplFactory( )
 |