In my application I have a set of plugins - classes that do some small actions when some events happen in application. Each method of a plugin must be invoked in a separate thread, though only one method of each plugin can be run simultaneously.
I can implement this using two ways:
Create single thread for each plugin which will handle events from plugin's queue until queue is empty. Then sleep until new event comes to queue, handle it and so on.
When events come to a plugin's queue process it in thread-pool thread. When queue becomes empty release it back to thread pool.
The question is: What are the advantages and disadvantages of both ways?
Some clarifications:
- Plugins don't load CPU too much, most of the time they just wait for the next event.
- I don't care about time needed to create a thread, plugins are long-living.
- Usually I have ~10-20 such plugins per application.