Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for decrementAndGetActiveThreadCount (0.14 seconds)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java

        }
    
        /**
         * Decrements the active thread count and returns the new value.
         * @return The decremented active thread count.
         */
        public int decrementAndGetActiveThreadCount() {
            return activeThreadCount.decrementAndGet();
        }
    
        /**
         * Returns the access count.
         * @return The access count.
         */
        public long getAccessCount() {
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Wed Dec 31 09:07:38 GMT 2025
    - 9K bytes
    - Click Count (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

        }
    
        /**
         * Decrements the active thread count using atomic operation.
         */
        protected void finishCrawling() {
            crawlerContext.decrementAndGetActiveThreadCount();
        }
    
        /**
         * Checks if the crawling process should continue.
         * @param tcCount The thread check count.
         * @return true if the crawling should continue, false otherwise.
         */
    Created: Sun Apr 12 03:50:13 GMT 2026
    - Last Modified: Wed Dec 31 09:07:38 GMT 2025
    - 20.3K bytes
    - Click Count (0)
Back to Top