I currently have a concurrent queue implementation that uses a BlockingQueue as the data store. I now need to introduce a second type of object that has a higher priority, leading me towards a starvation/priority queue for the original queue. So we're working with objects of type A and type B being produced from multiple threads. Any objects of type B should be processed before those of type A, but other than that FIFO order MUST be maintained. So if { 1A, 1B, 2A, 3A, 2B } are inserted the order should be {1B, 2B, 1A, 2A, 3A}
I tried a single PriorityBlockingQueue to push type Bs to the front, but I couldn't maintain the FIFO requirement (there's no natural order between items of the same type).
My next thought is to use two concurrent queues. I'm looking for common gotchas or considerations when coordinating access between the two queues. Ideally, I'd want to do something like this:
public void add(A a)
{
aQueue.add(a);
}
public void add(B b)
{
bQueue.add(b);
}
private void consume()
{
if(!bQueue.isEmpty())
process(bQueue.poll());
else if(!aQueue.isEmpty())
process(aQueue.poll());
}
Would I need any synchronization or locks if both queues are ConcurrentLinkedQueue (or insert more appropriate structure here)? Note I have many producers, but only one consumer (single threaded ThreadPoolExecutor).
EDIT: If a B comes in after the isEmpty() check, it's ok to process an A and handle it on the next consume() call.
