- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for LaJob (0.03 sec)
-
src/main/java/org/codelibs/fess/app/job/AllJobScheduler.java
import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalThing; import org.lastaflute.core.time.TimeManager; import org.lastaflute.job.LaCron; import org.lastaflute.job.LaJob; import org.lastaflute.job.LaJobRunner; import org.lastaflute.job.LaJobScheduler; import jakarta.annotation.Resource; public class AllJobScheduler implements LaJobScheduler {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
import org.codelibs.fess.job.JobExecutor; import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.job.JobManager; import org.lastaflute.job.LaJob; import org.lastaflute.job.LaJobRuntime; import org.lastaflute.job.key.LaJobUnique; public class ScriptExecutorJob implements LaJob { private static final Logger logger = LogManager.getLogger(ScriptExecutorJob.class); @Override public void run(final LaJobRuntime runtime) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.3K bytes - Viewed (0) -
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: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 87.2K bytes - Viewed (0)