Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setDefaultUncaughtExceptionHandler (0.85 sec)

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

        }
    
        // Test setDefaultUncaughtExceptionHandler
        public void test_setDefaultUncaughtExceptionHandler() {
            final Thread.UncaughtExceptionHandler originalHandler = Thread.getDefaultUncaughtExceptionHandler();
            try {
                final Thread.UncaughtExceptionHandler handler = (t, e) -> {};
                IndexUpdater.setDefaultUncaughtExceptionHandler(handler);
    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/indexer/IndexUpdater.java

         *
         * @param eh the default uncaught exception handler to set
         */
        public static void setDefaultUncaughtExceptionHandler(final UncaughtExceptionHandler eh) {
            Thread.setDefaultUncaughtExceptionHandler(eh);
        }
    
        /**
         * Sets the maximum number of indexer errors allowed.
         *
         * @param maxIndexerErrorCount the maximum error count to set
    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