Implementing Producer consumer pattern

后端 未结 3 1942
夕颜
夕颜 2021-01-06 16:29

I am trying to write a mail utility that places mails in a queue, and it is later consumed by a consumer thread.

I am trying to implement a typical producer-consumer

3条回答
  •  遥遥无期
    2021-01-06 16:57

    You are missing the shared queue. Without the queue, you have nothing.

    Producers put work onto the queue. Consumers take work off the queue. Use a BlockingQueue, whose put() and take() methods are blocking calls. Running producers and consumers in separate threads allows them to safely block while calling these methods.

    Neither the producers nor the consumers need to be Callable; Runnable will do. Using an Executor to tie it all together is a good idea.

提交回复
热议问题