Java SocketServer不受积压值限制

Java SocketServer is not limited by backlog value

我在我的应用程序中使用客户端-服务器机制来传输内部数据。 服务器部分之一应该设计为一次服务一个请求,没有线程,没有积压。我发现奇怪的功能然后使用:

serverport = new ServerSocket(port, 1, InetAddress.getLoopbackAddress());

即使一个已经积压,这个仍然继续接收传入连接? 有什么建议吗?我该如何解决这个问题?

正如 Javadoc 中所说:

The backlog argument is the requested maximum number of pending connections on the socket. Its exact semantics are implementation specific. In particular, an implementation may impose a maximum length or may choose to ignore the parameter altogther. The value provided should be greater than 0. If it is less than or equal to 0, then an implementation specific default will be used.