Saturday, January 18, 2014

Blocking Queues

A blocking queue causes a thread to block when you try to add an element when the queue is currently
full or to remove an element when the queue is empty. Blocking queues are a useful tool for coordinating the work of multiple threads

No comments:

Post a Comment