Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for HcConnectionMonitorTarget (0.07 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcConnectionMonitorTarget.java

     *   <li>Logs a warning if an exception occurs during connection monitoring.</li>
     * </ul>
     *
     */
    public class HcConnectionMonitorTarget implements TimeoutTarget {
        private static final Logger logger = LogManager.getLogger(HcConnectionMonitorTarget.class);
    
        private final HttpClientConnectionManager clientConnectionManager;
    
        /**
         * The timeout duration (in milliseconds) for idle connections.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/HcHttpClient.java

            }
    
            clientConnectionManager = buildConnectionManager(httpClientBuilder);
    
            connectionMonitorTask = TimeoutManager.getInstance()
                    .addTimeoutTarget(new HcConnectionMonitorTarget(clientConnectionManager, idleConnectionTimeout), connectionCheckInterval,
                            true);
    
            final CloseableHttpClient closeableHttpClient = httpClientBuilder.setDnsResolver(dnsResolver)
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 52.2K bytes
    - Viewed (0)
Back to top