The problem is that the queue may be full at close time.
It depends on how valuable the data in the queue is at the time of closure. Can you afford to throw everything in the queue away?
When the time comes to close the queue it should be effective to drain the queue first before adding the poison pill.
void close () throws InterruptedException {
do {
// Empty the queue.
while ( queue.poll(0,TimeUnit.MILLISECONDS) != null ) {
// Throw it away.
}
// Keep draining the queue 'till the pill is swallowed.
} while (!queue.offer(STOP, 0, TimeUnit.MILLISECONDS)) ;
}
but of course if the items in the queue are valuable you may wish to use drainto and preserve them.
Please also bear in mind that there may be more items added to the queue after the poison pill because not only might the queue be full but there may also be threads blocked waiting to post to it.