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

org.seedstack.scheduler.SchedulingContext Maven / Gradle / Ivy

There is a newer version: 3.3.1
Show newest version
/**
 * Copyright (c) 2013-2016, The SeedStack authors 
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
package org.seedstack.scheduler;

import java.util.Date;


/**
 * Provides detailed scheduling information for a task.
 */
public interface SchedulingContext {

    /**
     * TaskName is either :
     * 
    *
  • provided through ({@literal @}Scheduled) annotation
  • *
  • generated though ({@literal @}ScheduledTaskBuilder) instantiation
  • *
  • provided through ({@literal @}ScheduledTaskBuilder) DSL withTaskName method
  • *
* * @return the task name */ String getTaskName(); /** * RequestRecovery notify the Scheduler whether or not the Task should be re-executed if a recovery or fail-over situation is encountered. * * @return true if recovery should be attempted, false otherwise */ boolean isRequestRecovery(); /** * Whether or not the Task should remain stored after it is * orphaned (no Triggers point to it). * * @return true if the task should be stored durably, false otherwise. */ boolean isStoreDurably(); /** * triggerName is either : *
    *
  • provided through ({@literal @}Scheduled) annotation
  • *
  • generated though ({@literal @}ScheduledTaskBuilder) instantiation
  • *
  • provided through ({@literal @}ScheduledTaskBuilder) DSL withTriggerName method
  • *
* * @return the trigger name */ String getTriggerName(); /** * The Trigger's priority. When more than one Trigger have the same * fire time, the scheduler will fire the one with the highest priority * first. * * @return the trigger priority */ int getTriggerPriority(); /** * actual fire time of the current Task run * * @return the fire date */ Date getCurrentFireDate(); /** * fire time of the previous Task run * * @return the previous fire date */ Date getPreviousFireDate(); /** * fire time of the next Task run * * @return the next fire date */ Date getNextFireDate(); /** * The amount of time the Task ran for (in milliseconds). * The returned value will be -1 until the Task has actually completed (or thrown an exception), * and is therefore generally only useful to TaskListeners. * * @return the runtime task in milliseconds */ long getTaskRuntime(); /** * actual scheduled time of the current Task run * * @return the scheduled fire date */ Date getScheduledFireDate(); /** * Number of times the Trigger has been Task refired * * @return the refire count */ int getTriggerRefireCount(); /** * Trigger planned date of final run * * @return the planned final run date */ Date getTriggerFinalFireDate(); /** * Trigger planned end time * * @return the planned end date */ Date getTriggerEndDate(); /** * Trigger planned start time * * @return the planned start date */ Date getTriggerStartDate(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy