Uses of Interface
provided.utils.dispatcher.IDispatcher
Packages that use IDispatcher
Package
Description
Definitions of the parts of the Observer-Observable Design Pattern.
Implementations of the Observer-Observable Design Pattern as described in the dispatcher package.
-
Uses of IDispatcher in provided.utils.dispatcher
Methods in provided.utils.dispatcher with parameters of type IDispatcherModifier and TypeMethodDescriptionvoidIObserver.update(IDispatcher<TMsg> disp, TMsg msg)The update method called by the observer's dispatcher (observable) -
Uses of IDispatcher in provided.utils.dispatcher.impl
Classes in provided.utils.dispatcher.impl that implement IDispatcherModifier and TypeClassDescriptionclassADispatcher<TMsg>Mid-level abstraction of a dispatcher that establishes the ability to hold and manage observers in a thread-safe manner.classParallelDispatcher<TMsg>A dispatcher that updates its observers in parallel if possible on multiple threads.classSequentialDispatcher<TMsg>A simple dispatcher that updates its observers sequentially on a single thread.