throw new UnsupportedOperationException();
}
public int getThreadActiveCount()
{
Server server = _server;
if (server == null)
return -1;
int activeThreadCount = -1;
for (SocketLinkListener port : server.getPorts()) {
if (port.getActiveThreadCount() >= 0) {
if (activeThreadCount == -1)
activeThreadCount = 0;
activeThreadCount += port.getActiveThreadCount();