Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setSessionIdList (0.05 sec)

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            }
        }
    
        // Test run method basic flow
        public void test_run_basicFlow() throws Exception {
            final List<String> sessionIdList = Arrays.asList("session1");
            indexUpdater.setSessionIdList(sessionIdList);
    
            final CountDownLatch latch = new CountDownLatch(1);
            final AtomicBoolean errorOccurred = new AtomicBoolean(false);
    
            indexUpdater.setUncaughtExceptionHandler((t, e) -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

            final IndexUpdater indexUpdater = ComponentUtil.getIndexUpdater();
            indexUpdater.setName("IndexUpdater");
            indexUpdater.setPriority(indexUpdaterPriority);
            indexUpdater.setSessionIdList(sessionIdList);
            indexUpdater.setDaemon(true);
            indexUpdater.setCrawlerList(crawlerList);
            getAvailableBoostDocumentRuleList().forEach(rule -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            return sessionIdList;
        }
    
        /**
         * Sets the list of crawler session IDs to process.
         *
         * @param sessionIdList the list of session IDs to set
         */
        public void setSessionIdList(final List<String> sessionIdList) {
            this.sessionIdList = sessionIdList;
        }
    
        /**
         * Sets the flag indicating whether crawling should be finished.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
Back to top