PoolingHttpClientConnectionManager setMaxPerRoute(0) and setMaxTotal(0), what will happen?

StackOverflow https://stackoverflow.com/questions/22097947

  •  18-10-2022
  •  | 
  •  

Pergunta

Does someone know if I set MaxPerRoute and MaxTotal of PoolingHttpClientConnectionManager to "0" like below, what will happen?

PoolingHttpClientConnectionManager.setMaxPerRoute(0)
PoolingHttpClientConnectionManager.setMaxTotal(0)
Foi útil?

Solução

An exception

throw new IllegalArgumentException("Max value may not be negative or zero");

for both methods, check the org.apache.http.pool.AbstractConnPool class source code.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top