Uses of Class
dk.netarkivet.harvester.datamodel.JobPriority

Packages that use JobPriority
dk.netarkivet.harvester.datamodel   
dk.netarkivet.harvester.harvesting.distribute   
dk.netarkivet.harvester.scheduler   
 

Uses of JobPriority in dk.netarkivet.harvester.datamodel
 

Methods in dk.netarkivet.harvester.datamodel that return JobPriority
static JobPriority JobPriority.fromOrdinal(int status)
          Helper method that gives a proper object from e.g.
 JobPriority Job.getPriority()
          Get the priority of this job.
static JobPriority JobPriority.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static JobPriority[] JobPriority.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in dk.netarkivet.harvester.datamodel with parameters of type JobPriority
 java.util.Iterator<java.lang.Long> JobDBDAO.getAllJobIds(JobStatus status, JobPriority priority)
           
abstract  java.util.Iterator<java.lang.Long> JobDAO.getAllJobIds(JobStatus status, JobPriority priority)
          Return a list of all job_id's representing jobs with the given status and priority.
 

Constructors in dk.netarkivet.harvester.datamodel with parameters of type JobPriority
Job(java.lang.Long harvestID, DomainConfiguration cfg, JobPriority priority, long forceMaxObjectsPerDomain, long forceMaxBytesPerDomain, long forceMaxJobRunningTime, int harvestNum)
          Package private constructor for common initialisation.
Job(java.lang.Long harvestID, java.util.Map<java.lang.String,java.lang.String> configurations, JobPriority priority, long forceMaxObjectsPerDomain, long forceMaxBytesPerDomain, long forceMaxJobRunningTime, JobStatus status, java.lang.String orderXMLname, org.dom4j.Document orderXMLdoc, java.lang.String seedlist, int harvestNum, java.lang.Long continuationOf)
          Create a new Job object from basic information storable in the DAO.
 

Uses of JobPriority in dk.netarkivet.harvester.harvesting.distribute
 

Methods in dk.netarkivet.harvester.harvesting.distribute that return JobPriority
 JobPriority PersistentJobData.getJobPriority()
          Return the job priority.
 JobPriority HarvesterReadyMessage.getJobProprity()
           
 

Methods in dk.netarkivet.harvester.harvesting.distribute with parameters of type JobPriority
static ChannelID JobChannelUtil.getChannel(JobPriority jobPriority)
          Finds channels based on the priority of jobs.
 

Constructors in dk.netarkivet.harvester.harvesting.distribute with parameters of type JobPriority
HarvesterReadyMessage(java.lang.String applicationInstanceId, JobPriority jobPriority)
          Builds a new message.
 

Uses of JobPriority in dk.netarkivet.harvester.scheduler
 

Methods in dk.netarkivet.harvester.scheduler with parameters of type JobPriority
protected  void JobDispatcher.submitNextNewJob(JobPriority priority)
          Submit the next new job (the one with the lowest ID) with the given priority, and updates the internal counter as needed.