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

ru.taskurotta.service.schedule.JobConstants Maven / Gradle / Ivy

package ru.taskurotta.service.schedule;

/**
 * Date: 24.09.13 18:26
 */
public interface JobConstants {

    int STATUS_ACTIVE = 1;
    int STATUS_INACTIVE = -1;
    int STATUS_UNDEFINED = 0;
    int STATUS_ERROR = -2;

    String DATA_KEY_JOB = "job";
    String DATA_KEY_JOB_MANAGER = "jobManager";
    String DATA_KEY_TASK_SERVER = "taskServer";
    String DATA_KEY_QUEUE_INFO_RETRIEVER = "queueInfoRetriever";

    public static final int DEFAULT_MAX_CONSEQUENTIAL_ERRORS = 3;
    public static final int DEFAULT_NUMBER_OF_ATTEMPTS = 5;


}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy