-
Enhancement
-
Resolution: Fixed
-
P4
-
5.0
-
b51
-
x86
-
windows_2000
A DESCRIPTION OF THE REQUEST :
java.util.concurrent needs a BlockingDeque implementation of BlockingQueue<E>.
JUSTIFICATION :
See posting from Doug Lea:
http://altair.cs.oswego.edu/pipermail/concurrency-interest/2004-November/001101.html
The jsr166x Deque interface and its implementations should be extended
to BlockingDeque to support blocking LIFO usages. In the mean time,
you might want to use the simple LinkedBlockingStack class that I had
once written as a classroom example of using ReentrantLock and
Condition. It is not generally useful enough to be part of
java.util.concurrent, but you can get it from my miscellaneous code
page: http://gee.cs.oswego.edu/dl/code/ . You can use it in an
Executor by instantiating and sending in one of the messy
multiparameter ThreadPoolExecutor constructors.
-Doug
###@###.### 2004-11-09 03:50:00 GMT
java.util.concurrent needs a BlockingDeque implementation of BlockingQueue<E>.
JUSTIFICATION :
See posting from Doug Lea:
http://altair.cs.oswego.edu/pipermail/concurrency-interest/2004-November/001101.html
The jsr166x Deque interface and its implementations should be extended
to BlockingDeque to support blocking LIFO usages. In the mean time,
you might want to use the simple LinkedBlockingStack class that I had
once written as a classroom example of using ReentrantLock and
Condition. It is not generally useful enough to be part of
java.util.concurrent, but you can get it from my miscellaneous code
page: http://gee.cs.oswego.edu/dl/code/ . You can use it in an
Executor by instantiating and sending in one of the messy
multiparameter ThreadPoolExecutor constructors.
-Doug
###@###.### 2004-11-09 03:50:00 GMT