Package ai.preferred.venom.job
Class FIFOJobQueue
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractQueue<Job>
-
- ai.preferred.venom.job.AbstractJobQueue
-
- ai.preferred.venom.job.FIFOJobQueue
-
- All Implemented Interfaces:
Iterable<Job>,Collection<Job>,BlockingQueue<Job>,Queue<Job>
- Direct Known Subclasses:
FIFOQueueScheduler
public class FIFOJobQueue extends AbstractJobQueue
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 FIFOJobQueue()Constructs an instance of FIFOJobQueue.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanoffer(Job job)booleanoffer(Job job, long timeout, TimeUnit unit)Jobpoll()Jobpoll(long timeout, TimeUnit unit)voidput(Job job)-
Methods inherited from class ai.preferred.venom.job.AbstractJobQueue
drainTo, drainTo, getQueue, 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
-
Methods inherited from interface java.util.concurrent.BlockingQueue
add, contains, remove
-
Methods inherited from interface java.util.Collection
addAll, clear, containsAll, equals, hashCode, isEmpty, parallelStream, removeAll, removeIf, retainAll, spliterator, stream, toArray, toArray, toArray
-
-
-
-
Method Detail
-
put
public final void put(@Nonnull Job job) throws InterruptedException
- Throws:
InterruptedException
-
offer
public final boolean offer(Job job, long timeout, @Nonnull TimeUnit unit) throws InterruptedException
- Throws:
InterruptedException
-
poll
public final Job poll(long timeout, @Nonnull TimeUnit unit) throws InterruptedException
- Throws:
InterruptedException
-
poll
public final Job poll()
-
-