LinkedBlockingQueue Blocking
I am using a LinkedBlockingQueue and calling the take method to get an object from the queue. The population of this queue is done by another thread.
When I call the take method the queue is empty and the LinkedBlockingQueue awaits. The other thread then runs and populates the LinkedBlockingQueue.
How do I tell the LinkedBlockingQueue that it now contains data and to start getting the records?

