Uses of Class
ai.preferred.venom.job.Job
-
Packages that use Job Package Description ai.preferred.venom ai.preferred.venom.job -
-
Uses of Job in ai.preferred.venom
Method parameters in ai.preferred.venom with type arguments of type Job Modifier and Type Method Description Crawler.BuilderCrawler.Builder. setJobQueue(@NotNull BlockingQueue<Job> jobQueue)Sets the JobQueue to be used, if not set, default will be chosen.Crawler.BuilderCrawler.Builder. setScheduler(@NotNull BlockingQueue<Job> jobQueue)Deprecated. -
Uses of Job in ai.preferred.venom.job
Methods in ai.preferred.venom.job that return Job Modifier and Type Method Description JobAbstractJobQueue. peek()JobFIFOJobQueue. poll()JobFIFOJobQueue. poll(long timeout, TimeUnit unit)JobLazyPriorityJobQueue. poll()JobLazyPriorityJobQueue. poll(long time, TimeUnit unit)JobPriorityJobQueue. poll()JobPriorityJobQueue. poll(long timeout, TimeUnit unit)JobJob. setJobAttribute(JobAttribute jobAttribute)Adds or replace the current job attribute if the class of attribute is already present in the map.JobAbstractJobQueue. take()Methods in ai.preferred.venom.job that return types with arguments of type Job Modifier and Type Method Description protected BlockingQueue<Job>AbstractJobQueue. getQueue()Get the BlockingQueue backing this scheduler.Iterator<Job>AbstractJobQueue. iterator()Methods in ai.preferred.venom.job with parameters of type Job Modifier and Type Method Description booleanAbstractPriorityJobQueue. offer(Job job)booleanAbstractPriorityJobQueue. offer(Job job, long timeout, TimeUnit unit)booleanFIFOJobQueue. offer(Job job)booleanFIFOJobQueue. offer(Job job, long timeout, TimeUnit unit)voidAbstractPriorityJobQueue. put(Job job)voidFIFOJobQueue. put(Job job)Method parameters in ai.preferred.venom.job with type arguments of type Job Modifier and Type Method Description intAbstractJobQueue. drainTo(Collection<? super Job> c)intAbstractJobQueue. drainTo(Collection<? super Job> c, int maxElements)Constructor parameters in ai.preferred.venom.job with type arguments of type Job Constructor Description AbstractJobQueue(BlockingQueue<Job> queue)Constructs an instance of AbstractJobQueue.Scheduler(BlockingQueue<Job> queue)Constructs an instance of Scheduler.
-