Team LiB
Previous Section Next Section

SocketImplFactoryjava.net

Java 1.0

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( )

    Team LiB
    Previous Section Next Section