All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fastchar.job.FastJobWeb Maven / Gradle / Ivy

package com.fastchar.job;

import com.fastchar.core.FastEngine;
import com.fastchar.interfaces.IFastWeb;
import com.fastchar.job.quartz.QuartzJobScheduler;

import java.sql.Timestamp;

public class FastJobWeb implements IFastWeb {
    public void onInit(FastEngine engine) throws Exception {
        engine.getOverrides()
                .add(QuartzJobScheduler.class);

        engine.getObservable()
                .addObserver(QuartzJobScheduler.class);

    }

    public void onDestroy(FastEngine engine) throws Exception {

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy