Class AbstractJobEntry

    • Field Detail

      • log

        protected static final org.apache.logging.log4j.Logger log
        Logging
    • Constructor Detail

      • AbstractJobEntry

        public AbstractJobEntry​(int sec,
                                int min,
                                int hour,
                                int wd,
                                int day_mo,
                                String task)
                         throws TurbineException
        Constructor. Schedule a job to run on a certain point of time.
        Example 1: Run the DefaultScheduledJob at 8:00am every 15th of the month -
        JobEntry je = new JobEntry(0,0,8,-1,15,"DefaultScheduledJob");
        Example 2: Run the DefaultScheduledJob at 8:00am every day -
        JobEntry je = new JobEntry(0,0,8,-1,-1,"DefaultScheduledJob");
        Example 3: Run the DefaultScheduledJob every 2 hours. -
        JobEntry je = new JobEntry(0,120,-1,-1,-1,"DefaultScheduledJob");
        Example 4: Run the DefaultScheduledJob every 30 seconds. -
        JobEntry je = new JobEntry(30,-1,-1,-1,-1,"DefaultScheduledJob");
        Parameters:
        sec - Value for entry "seconds".
        min - Value for entry "minutes".
        hour - Value for entry "hours".
        wd - Value for entry "week days".
        day_mo - Value for entry "month days".
        task - Task to execute.
        Throws:
        TurbineException - a generic exception.
    • Method Detail

      • compareTo

        public int compareTo​(JobEntry je)
        Used for ordering Jobentries Note: this comparator imposes orderings that are inconsistent with equals.
        Specified by:
        compareTo in interface Comparable<JobEntry>
        Parameters:
        je - The first JobEntry object.
        Returns:
        An int indicating the result of the comparison.
      • setActive

        public void setActive​(boolean isActive)
        Sets whether the job is running.
        Specified by:
        setActive in interface JobEntry
        Parameters:
        isActive - Whether the job is running.
      • isActive

        public boolean isActive()
        Check to see if job is currently active/running
        Specified by:
        isActive in interface JobEntry
        Returns:
        true if job is currently queuing run by the worker thread, otherwise false
      • getNextRuntime

        public long getNextRuntime()
        Get the next runtime for this job as a long.
        Specified by:
        getNextRuntime in interface JobEntry
        Returns:
        The next run time as a long.
      • calcRunTime

        public void calcRunTime()
                         throws TurbineException
        Calculate how long before the next runtime.
        The runtime determines it's position in the job queue. Here's the logic:
        1. Create a date the represents when this job is to run.
        2. If this date has expired, them "roll" appropriate date fields forward to the next date.
        3. Calculate the diff in time between the current time and the next run time.
        Specified by:
        calcRunTime in interface JobEntry
        Throws:
        TurbineException - a generic exception.
      • getJobId

        public abstract int getJobId()
        Get the value of jobId.
        Specified by:
        getJobId in interface JobEntry
        Returns:
        int
      • setJobId

        public abstract void setJobId​(int v)
        Set the value of jobId.
        Specified by:
        setJobId in interface JobEntry
        Parameters:
        v - new value
      • getSecond

        public abstract int getSecond()
        Get the value of second.
        Returns:
        int
      • setSecond

        public abstract void setSecond​(int v)
        Set the value of second.
        Parameters:
        v - new value
      • getMinute

        public abstract int getMinute()
        Get the value of minute.
        Returns:
        int
      • setMinute

        public abstract void setMinute​(int v)
        Set the value of minute.
        Parameters:
        v - new value
      • getHour

        public abstract int getHour()
        Get the value of hour.
        Returns:
        int
      • setHour

        public abstract void setHour​(int v)
        Set the value of hour.
        Parameters:
        v - new value
      • getWeekDay

        public abstract int getWeekDay()
        Get the value of weekDay.
        Returns:
        int
      • setWeekDay

        public abstract void setWeekDay​(int v)
        Set the value of weekDay.
        Parameters:
        v - new value
      • getDayOfMonth

        public abstract int getDayOfMonth()
        Get the value of dayOfMonth.
        Returns:
        int
      • setDayOfMonth

        public abstract void setDayOfMonth​(int v)
        Set the value of dayOfMonth.
        Parameters:
        v - new value
      • setTask

        public abstract void setTask​(String v)
        Set the value of task.
        Specified by:
        setTask in interface JobEntry
        Parameters:
        v - new value