I have an Executor (obtained via Executors.newFixedThreadPool(int)
). I would like to run some arbitrary code whenever a) the queue is empty and an item is inserted into the queue, and b) the queue is non-empty and the last item in the queue is removed. Both a) and b) should always be run whenever their respective conditions are met, eg. if the queue is emp开发者_如何学JAVAtied and filled multiple times, a) and b) will be run multiple times.
All of this should be invisible to the user of the executor, which implies the code should probably be inside some sort of wrapper that implements ExecutorService. I can wrap the result of newFixedThreadPool()
before returning it to the user, if I want. I can also implement my own ExecutorServicee entirely if necessary.
I want to be absolutely certain that a) and b) behave properly with respect to synchronization across multiple threads. It's not clear to me the best way to do this.
Suggestions?
As a start, it sounds like all you want is to decorate the BlockingQueue implementation used by the executor such that when add(), offer(), etc. is called and the queue isEmpty(), you do a), and when remove(), take(), etc. is called, resulting in the queue's being isEmpty(), you do b). You might even find such a queue implementation out there somewhere.
精彩评论