Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for welches (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

         */
        public void addEventHandler(final String eventName, final Consumer<EventInfo> handler) {
            eventHandlers.computeIfAbsent(eventName, k -> new ArrayList<>()).add(handler);
        }
    
        /**
         * Fetches new events from OpenSearch that were created after the last check time.
         *
         * @return the list of new events.
         */
        protected List<EventInfo> fetchNewEvents() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 33.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

            helper.poll();
            assertTrue(heartbeatCalled.get());
            assertTrue(cleanupCalled.get());
        }
    
        @Test
        public void test_poll_dispatchesEvents() {
            // Verify that poll fetches events and dispatches them
            final AtomicInteger dispatchCount = new AtomicInteger(0);
            final CoordinatorHelper helper = new CoordinatorHelper() {
                @Override
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
Back to Top