Does anyone know of an alternative to the Observer a.k.a. Listener pattern? I'm interested in something that would work well also in an asynchronous "environment". The problem I'm facing is that I have an application which uses this pattern a lot(which is not a bad thing per se) but it becomes a bottleneck as the number of listeners increases; combined with threading primitives (mutexes, critical sections - of course in my specific environment) the hit in performance is really bad.
|
|
How about Message Queue? |
|||
|
If there are too many observers, so the thread being observed is not making any progress, then it might be wise to reverse the relationship. Rather than have the observed thread call out to each and every observer, it may be better to have the observers wait on something like a condition variable or event associated with the observed thread. The observer code can then block, waiting for the condition variable to be signalled. The observed thread can then just signal the condition variable rather than calling into the observers; the observers can notice the signal and process the consequences in their own time. |
|||||||||
|
|
Please take a look at it if reducing listeners in your code is your primary objective Jeffrey Richter and his AsyncEnumerator. This technique makes asynchronous programmin look more like synchronous.
|
|||
|
|
Difficult to say without a more concrete description but the Mediator pattern is related and can be used when the number of communicating objects starts to proliferate. You could implement some policy to co-ordinate the activities a more structured way within these. |
|||
|
|
|
Two alternatives from me: using actor model (like akka framework) or using executor to limit the parallelization. Executor is basically just a thread pool which will limit the number of thread and reuse finished threads. |
||||
|