- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for activeThreadCount (0.13 sec)
-
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: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 4.5K bytes - Viewed (0) -
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: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:41:37 UTC 2024 - 15.5K bytes - Viewed (0)