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

org.frameworkset.schedule.TriggerContext Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

There is a newer version: 6.2.7
Show newest version
package org.frameworkset.schedule;

import java.util.Date;

public interface TriggerContext {
	/**
	 * Return the last scheduled execution time of the task,
	 * or {@code null} if not scheduled before.
	 */
	Date lastScheduledExecutionTime();

	/**
	 * Return the last actual execution time of the task,
	 * or {@code null} if not scheduled before.
	 */
	Date lastActualExecutionTime();

	/**
	 * Return the last completion time of the task,
	 * or {@code null} if not scheduled before.
	 */
	Date lastCompletionTime();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy