I want to have an Executor with the possibility to choose whether new task is added at the top or at the bottom of the queue. What is the simplest way to achieve that?

link|improve this question

61% accept rate
Maybe stackoverflow.com/questions/807223/… might help. – esaj Oct 27 '11 at 18:02
feedback

1 Answer

I think that you can achieve this functionality by using PriorityQeueue (or PriorityBlockingQueue depending on your needs).

These queues process tasks in order that depends on Comparator. Although this comparator is passed to the queue when it is created you can implement your custom comparator that has its own logic that can decide whether specific task is lower or higher priority.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.