Package ai.preferred.venom.job
Class FIFOQueueScheduler
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractQueue<Job>
-
- ai.preferred.venom.job.AbstractQueueScheduler
-
- ai.preferred.venom.job.FIFOQueueScheduler
-
- All Implemented Interfaces:
QueueScheduler,java.lang.Iterable<Job>,java.util.Collection<Job>,java.util.concurrent.BlockingQueue<Job>,java.util.Queue<Job>
public class FIFOQueueScheduler extends AbstractQueueScheduler
This class provides and implementation of scheduler with a first in first out queue.Jobs in queue will be processed first in order of insertion.
- Author:
- Ween Jiann Lee
-
-
Constructor Summary
Constructors Constructor Description FIFOQueueScheduler()Constructs an instance of FIFOQueueScheduler.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanoffer(Job job)booleanoffer(Job job, long timeout, java.util.concurrent.TimeUnit unit)Jobpoll()Jobpoll(long timeout, java.util.concurrent.TimeUnit unit)voidput(Job job)-
Methods inherited from class ai.preferred.venom.job.AbstractQueueScheduler
drainTo, drainTo, getQueue, getScheduler, iterator, peek, remainingCapacity, size, take
-
Methods inherited from class java.util.AbstractCollection
contains, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Method Detail
-
put
public final void put(@Nonnull Job job) throws java.lang.InterruptedException- Throws:
java.lang.InterruptedException
-
offer
public final boolean offer(Job job, long timeout, @Nonnull java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException
- Throws:
java.lang.InterruptedException
-
offer
public final boolean offer(@Nonnull Job job)
-
poll
public final Job poll(long timeout, @Nonnull java.util.concurrent.TimeUnit unit) throws java.lang.InterruptedException
- Throws:
java.lang.InterruptedException
-
poll
public final Job poll()
-
-