Java javax.net ServerSocketFactory fields, constructors, methods, implement or subclass

Example usage for Java javax.net ServerSocketFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.net ServerSocketFactory.

The text is from its open source code.

Method

ServerSocketcreateServerSocket(int port)
Returns a server socket bound to the specified port.
ServerSocketcreateServerSocket(int port, int backlog, InetAddress ifAddress)
Returns a server socket bound to the specified port, with a specified listen backlog and local IP.
ServerSocketcreateServerSocket(int port, int backlog)
Returns a server socket bound to the specified port, and uses the specified connection backlog.
ServerSocketcreateServerSocket()
Returns an unbound server socket.
ServerSocketFactorygetDefault()
Returns a copy of the environment's default socket factory.