Module hw06
Package provided.utils.dispatcher.impl
package provided.utils.dispatcher.impl
Implementations of the Observer-Observable Design Pattern as described in the dispatcher package.
- Author:
- swong
-
Class SummaryClassDescriptionADispatcher<TMsg>Mid-level abstraction of a dispatcher that establishes the ability to hold and manage observers in a thread-safe manner.ParallelDispatcher<TMsg>A dispatcher that updates its observers in parallel if possible on multiple threads.SequentialDispatcher<TMsg>A simple dispatcher that updates its observers sequentially on a single thread.