I have two threads. One is the customer and the other is the productor.
I want to call a function in the the customer called READ. That should block indefinitely until the producer put data on it.
How can I do it ? Thanks !
|
I have two threads. One is the customer and the other is the productor. I want to call a function in the the customer called READ. That should block indefinitely until the producer put data on it. How can I do it ? Thanks ! |
|||||||
|
|
I would recommend you to use |
|||||||||||||
|
|
if the data to be put in the queue requires synchronization i.e. producer produces one object and stores it in a queue; consumer must take consume the object put by the producer, using SynchronousQueue or new TransferQueue should be a better idea |
|||
|
|
|
Use |
|||||
|