Search code examples
javaqueuejavolution

Queue implementation in javolution


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!


Solution

  • 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: