1.

What Is Linkedblockingqueue In Java Concurrency?

Answer»

LinkedBlockingQueue is an IMPLEMENTATION of BlockingQueue interface.

LinkedBlockingQueue internally USES linked NODES to store elements. It is optionally bounded and that's where it differs from ARRAYBLOCKINGQUEUE which is bounded.

LinkedBlockingQueue is an implementation of BlockingQueue interface.

LinkedBlockingQueue internally uses linked nodes to store elements. It is optionally bounded and that's where it differs from ArrayBlockingQueue which is bounded.



Discussion

No Comment Found