I am looking for a java.util.Queue implementation that can be accessed concurrently and where elements are added and/or removed randomly. That is, I'm looking for an implementation that does not follow the FIFO constraint, but makes sure to shuffle a new entry among the currently contained entries.
Please notice that according to the java.util.Queue contract, "queues typically, but do not necessarily, order elements in a FIFO (first-in-first-out) manner."

PriorityBlockingQueuethat inserts elements with a random priority. – Louis Wasserman Feb 15 at 23:18myQueue = new ConcurrentLinkedQueue( Collections.shuffle( new ArrayList( myQueue.add(e) ) ) );? :) – Abdull Feb 15 at 23:42myQueueat all introduces its own concurrency issues. But really, writing aPriorityBlockingQueuewrapper that uses random priorities shouldn't be terribly complicated. – Louis Wasserman Feb 15 at 23:45Comparator? ... good start! I could use my element'shashCode()method as an idempotent source of randomness formyComparator.compare(..). ... But generally, with aComparator, I think this "random queue" could run into the problem of having an entry stuck forever on the tail position (... rather than having it eventually get to the head position). – Abdull Feb 16 at 0:08