InterviewSolution
Saved Bookmarks
| 1. |
What Is Concurrentlinkeddequeue In Java? |
|
Answer» ConcurrentLinkedDeque is an unbounded thread-safeDeque which stores its ELEMENTS as LINKED nodes. Since it implements deque interface ConcurrentLinkedDequesupports ELEMENT insertion and removal at both ENDS. ConcurrentLinkedDequeue is thread safe and it doesn't block operations. ConcurrentLinkedDeque is an unbounded thread-safeDeque which stores its elements as linked nodes. Since it implements deque interface ConcurrentLinkedDequesupports element insertion and removal at both ends. ConcurrentLinkedDequeue is thread safe and it doesn't block operations. |
|