Java.Net.ServerSocket: Method Members

The methods of Java.Net.ServerSocket are listed below. For a list of all members, see the ServerSocket Members list.

See Also: Inherited members from Java.Lang.Object

Public Methods

Accept() : Socket
Waits for an incoming request and blocks until the connection is opened.
AcceptAsync() : System.Threading.Tasks.Task<Socket>
Documentation for this section has not yet been entered.
Bind(SocketAddress)
Binds this server socket to the given local socket address with a maximum backlog of 50 unaccepted connections.
Bind(SocketAddress, int)
Binds this server socket to the given local socket address.
Close()
Closes this server socket and its implementation.
SetPerformancePreferences(int, int, int)
Sets performance preferences for connection time, latency and bandwidth.
static
SetSocketFactory(ISocketImplFactory)
Sets the server socket implementation factory of this instance.

Protected Methods

ImplAccept(Socket)
Invokes the server socket implementation to accept a connection on the given socket aSocket.
ImplAcceptAsync(Socket) : System.Threading.Tasks.Task
Documentation for this section has not yet been entered.