InterviewSolution
Saved Bookmarks
| 1. |
What Is Blockingdeque In Java Concurrency? |
|
Answer» BlockingDeque interface (added in Java 6) is a Deque that PROVIDES additional support for blocking operations. Blocking methods of BlockingDeque interface come in four forms.
BlockingDeque is thread safe, does not permit null elements, and MAY (or may not) be capacity-constrained. BlockingDeque interface (added in Java 6) is a Deque that provides additional support for blocking operations. Blocking methods of BlockingDeque interface come in four forms. BlockingDeque is thread safe, does not permit null elements, and may (or may not) be capacity-constrained. |
|