Queue implementation in javolution

461 Views Asked by At

Can anybody let me know is there any Queue implementation in javolution to use? I have seen FastList, FastMap, FastTable, but I couldn't find one specific to Queue. Any other suggestion to have a fast queue usage please? Thanks in advance!

1

There are 1 best solutions below

2
On BEST ANSWER

I don't think there is a Queue implementation in Javolution.

Why not to use standard java.util.LinkedList or java.concurrent.LinkedBlockingQueue? Those are pretty efficient implementations of the Queue interface: