- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for onShutdown (0.06 sec)
-
src/test/java/org/codelibs/fess/job/JobExecutorTest.java
ShutdownListener listener1 = new ShutdownListener() { @Override public void onShutdown() { callCount.incrementAndGet(); } }; ShutdownListener listener2 = new ShutdownListener() { @Override public void onShutdown() { callCount.addAndGet(10); } }; // Add first listener
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/JobExecutor.java
/** * Initiates shutdown of the job executor. * This method notifies the shutdown listener to perform cleanup operations. */ public void shutdown() { shutdownListener.onShutdown(); } /** * Adds a shutdown listener to be notified when the executor is shutting down. * * @param listener the shutdown listener to add */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.1K bytes - Viewed (0)