- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for setConnectionTimeout (0.06 seconds)
-
README.md
// Configure HTTP client with custom settings container.singleton("httpClient", HcHttpClient.class, client -> { client.setUserAgent("MyBot/1.0"); client.setConnectionTimeout(30000); client.setMaxConnections(100); }); // Configure URL filtering container.singleton("urlFilter", UrlFilterImpl.class, filter -> { filter.addInclude("https://example.com/.*");
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Aug 31 05:32:52 GMT 2025 - 15.3K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/ApiExtractor.java
this.url = url; } /** * Sets the connection timeout. * @param connectionTimeout The connection timeout in milliseconds. */ public void setConnectionTimeout(final Integer connectionTimeout) { this.connectionTimeout = connectionTimeout; } /** * Sets the socket timeout. * @param soTimeout The socket timeout in milliseconds. */Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Mon Nov 24 03:59:47 GMT 2025 - 12.2K bytes - Click Count (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java
} } /** * Sets the connection timeout in milliseconds. * * @param connectionTimeout The connection timeout */ public void setConnectionTimeout(final Integer connectionTimeout) { this.connectionTimeout = connectionTimeout; } /** * Sets the maximum total number of connections. *Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sun Nov 23 12:19:14 GMT 2025 - 53.7K bytes - Click Count (0)