Uses of Class
dk.netarkivet.harvester.harvesting.monitor.StartedJobInfo

Packages that use StartedJobInfo
dk.netarkivet.harvester.datamodel   
dk.netarkivet.harvester.harvesting.monitor   
 

Uses of StartedJobInfo in dk.netarkivet.harvester.datamodel
 

Methods in dk.netarkivet.harvester.datamodel that return StartedJobInfo
abstract  StartedJobInfo[] RunningJobsInfoDAO.getFullJobHistory(long jobId)
          Returns an array of all progress records chronologically sorted for the given job ID.
 StartedJobInfo[] RunningJobsInfoDBDAO.getFullJobHistory(long jobId)
          Returns an array of all progress records chronologically sorted for the given job ID.
abstract  StartedJobInfo RunningJobsInfoDAO.getMostRecentByJobId(long jobId)
          Returns the most recent progress record for the given job ID.
 StartedJobInfo RunningJobsInfoDBDAO.getMostRecentByJobId(long jobId)
          Returns the most recent progress record for the given job ID.
abstract  StartedJobInfo[] RunningJobsInfoDAO.getMostRecentByJobId(long jobId, long startTime, int limit)
          Returns an array of progress records chronologically sorted for the given job ID, starting at a given crawl time, and limited to a given number of records.
 StartedJobInfo[] RunningJobsInfoDBDAO.getMostRecentByJobId(long jobId, long startTime, int limit)
          Returns an array of chronologically sorted progress records for the given job ID, starting at a given crawl time, and limited to a given number of record.
 

Methods in dk.netarkivet.harvester.datamodel that return types with arguments of type StartedJobInfo
abstract  java.util.Map<java.lang.String,java.util.List<StartedJobInfo>> RunningJobsInfoDAO.getMostRecentByHarvestName()
          Returns the most recent record for every job, partitioned by harvest definition name.
 java.util.Map<java.lang.String,java.util.List<StartedJobInfo>> RunningJobsInfoDBDAO.getMostRecentByHarvestName()
          Returns the most recent record for every job, partitioned by harvest definition name.
 

Methods in dk.netarkivet.harvester.datamodel with parameters of type StartedJobInfo
abstract  void RunningJobsInfoDAO.store(StartedJobInfo startedJobInfo)
          Stores a StartedJobInfo record to the persistent storage.
 void RunningJobsInfoDBDAO.store(StartedJobInfo startedJobInfo)
          Stores a StartedJobInfo record to the persistent storage.
 

Uses of StartedJobInfo in dk.netarkivet.harvester.harvesting.monitor
 

Methods in dk.netarkivet.harvester.harvesting.monitor that return StartedJobInfo
static StartedJobInfo StartedJobInfo.build(CrawlProgressMessage msg)
          Updates the members from a CrawlProgressMessage instance.
static StartedJobInfo HarvestMonitor.getMostRecentRunningJobInfo(long jobId)
          Returns the most recent running job info record available for the given job ID.
static StartedJobInfo[] HarvestMonitor.getMostRecentRunningJobInfos(long jobId)
          Returns a configurable number of the most recent running job info records available for the given job ID.
 

Methods in dk.netarkivet.harvester.harvesting.monitor with parameters of type StartedJobInfo
 int StartedJobInfo.compareTo(StartedJobInfo o)