- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getSchedulerJobClass (0.14 sec)
-
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
return getJobTemplateTitleData(); } return "None"; } String getSchedulerJobClass(); default Class<? extends LaJob> getSchedulerJobClassAsClass() { try { return (Class<? extends LaJob>) Class.forName(getSchedulerJobClass()); } catch (final ClassNotFoundException e) { throw new ClassNotFoundRuntimeException(e); } }
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 88.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
* comment: Job class for the scheduler. * @return The value of found property. (NotNull: if not found, exception but basically no way) */ String getSchedulerJobClass(); /** * Get the value for the key 'scheduler.concurrent.exec.mode'. <br> * The value is, e.g. QUIT <br> * comment: Mode for concurrent execution in the scheduler.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 525.7K bytes - Viewed (2)