| org.apache.catalina.net.ServerSocketFactory
All known Subclasses: org.apache.coyote.tomcat5.CoyoteServerSocketFactory, org.apache.catalina.net.DefaultServerSocketFactory,
ServerSocketFactory | public interface ServerSocketFactory (Code) | | Interface that describes the common characteristics of factory classes
that create server sockets which may be required by a Connector. A concrete
implementation of this interface will be assigned to a Connector
via the setFactory() method.
author: db@eng.sun.com author: Harish Prabandham author: Craig R. McClanahan |
Method Summary | |
public ServerSocket | createSocket(int port) Returns a server socket which uses all network interfaces on
the host, and is bound to a the specified port. | public ServerSocket | createSocket(int port, int backlog) Returns a server socket which uses all network interfaces on
the host, is bound to a the specified port, and uses the
specified connection backlog. | public ServerSocket | createSocket(int port, int backlog, InetAddress ifAddress) Returns a server socket which uses only the specified network
interface on the local host, is bound to a the specified port,
and uses the specified connection backlog. |
|
|