Search Options

Display Count
Sort
Preferred Language
Advanced Search

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

  1. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

                protected List<EventInfo> fetchNewEvents() {
                    final EventInfo e1 = new EventInfo();
                    e1.name = "event1";
                    final EventInfo e2 = new EventInfo();
                    e2.name = "event2";
                    return List.of(e1, e2);
                }
    
                @Override
                protected void dispatchEvent(final EventInfo event) {
    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)
  2. src/main/java/org/codelibs/fess/helper/CoordinatorHelper.java

            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() {
            final List<EventInfo> events = new ArrayList<>();
    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)
Back to Top