Java - Blocking Queue
Blocking Queue:
It is a queue. It will work as a producer consumer concept queue.
BlockingQueue<Message> queue = new ArrayBlockingQueue<>(10);
It is a queue. It will work as a producer consumer concept queue.
BlockingQueue<Message> queue = new ArrayBlockingQueue<>(10);
Comments
Post a Comment