Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for activeThreadCount (0.47 sec)

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

            this.sessionId = sessionId;
        }
    
        public Integer getActiveThreadCount() {
            return activeThreadCount;
        }
    
        public void setActiveThreadCount(final Integer activeThreadCount) {
            this.activeThreadCount = activeThreadCount;
        }
    
        public long getAccessCount() {
            return accessCount.get();
        }
    
        public long incrementAndGetAccessCount() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

        protected void startCrawling() {
            synchronized (crawlerContext.activeThreadCountLock) {
                crawlerContext.activeThreadCount++;
            }
        }
    
        protected void finishCrawling() {
            synchronized (crawlerContext.activeThreadCountLock) {
                crawlerContext.activeThreadCount--;
            }
        }
    
        protected boolean isContinue(final int tcCount) {
            if (!crawlerContainer.available()) {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top