- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for setConnectionTimeout (0.34 sec)
-
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/.*");
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Aug 31 05:32:52 UTC 2025 - 15.3K bytes - Viewed (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. */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 12.2K bytes - Viewed (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. *
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 52.2K bytes - Viewed (0)