Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for setCrawlerClient (0.09 seconds)

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

            if (useHc5) {
                if (hc5Client != null) {
                    setCrawlerClient(hc5Client);
                } else {
                    logger.warn("HC5 client is null, falling back to HC4 client");
                    setCrawlerClient(hc4Client);
                }
            } else {
                if (hc4Client != null) {
                    setCrawlerClient(hc4Client);
                } else {
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Thu Jan 08 04:17:06 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java

            return client;
        }
    
        /**
         * Sets the underlying CrawlerClient.
         * @param client The CrawlerClient instance to set.
         */
        public void setCrawlerClient(final CrawlerClient client) {
            this.client = client;
        }
    
        /**
         * Returns the maximum retry count.
         * @return The maximum retry count.
         */
        public int getMaxRetryCount() {
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Sun Jul 06 02:13:03 GMT 2025
    - 7.8K bytes
    - Click Count (0)
Back to Top