Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reading from multiple BlockingQueues within a single thread

I have three Java's LinkedBlockingQueue instances and I'd like to read from them (take operation) only using one thread. The naive approach is to have one thread per queue.

Is there anything like the UNIX select system call for blocking queues in Java?

Thanks.

like image 674
Rafael Marmelo Avatar asked Sep 09 '26 22:09

Rafael Marmelo


1 Answers

Well, those BlockingQueues were really meant to be serviced by their own Threads.

Something I'd consider trying is to set up a 4th queue for much smaller items, say Booleans, and have the offer() calls on each of the 3 other queues accompany their insertion by inserting a Boolean into that 4th queue. Your thread can then go to sleep on the 4th queue, and when it wakes up it can peek() in the other 3 to find out where to get the goods.

Highly inelegant solution, I think, and I suspect there are possible race conditions where you won't be cleanly woken up some times. But it should basically work.

like image 184
Carl Smotricz Avatar answered Sep 12 '26 12:09

Carl Smotricz