Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LaJob (0.11 sec)

  1. 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;
    
    public class AllJobScheduler implements LaJobScheduler {
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  2. 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) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  3. 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);
            }
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
Back to top