Uses of Interface
net.engio.mbassy.dispatch.IMessageDispatcher
-
Packages that use IMessageDispatcher Package Description net.engio.mbassy.dispatch net.engio.mbassy.subscription -
-
Uses of IMessageDispatcher in net.engio.mbassy.dispatch
Classes in net.engio.mbassy.dispatch that implement IMessageDispatcher Modifier and Type Class Description class
DelegatingMessageDispatcher
A delegating dispatcher wraps additional logic around a given delegate.class
EnvelopedMessageDispatcher
The enveloped dispatcher will wrap published messages in an envelope before passing them to their configured dispatcher.class
FilteredMessageDispatcher
A dispatcher that implements message filtering based on the filter configuration of the associated message handler.class
MessageDispatcher
Standard implementation for direct, unfiltered message delivery.Fields in net.engio.mbassy.dispatch declared as IMessageDispatcher Modifier and Type Field Description private IMessageDispatcher
DelegatingMessageDispatcher. delegate
Methods in net.engio.mbassy.dispatch that return IMessageDispatcher Modifier and Type Method Description protected IMessageDispatcher
DelegatingMessageDispatcher. getDelegate()
Constructors in net.engio.mbassy.dispatch with parameters of type IMessageDispatcher Constructor Description DelegatingMessageDispatcher(IMessageDispatcher delegate)
EnvelopedMessageDispatcher(IMessageDispatcher dispatcher)
FilteredMessageDispatcher(IMessageDispatcher dispatcher)
-
Uses of IMessageDispatcher in net.engio.mbassy.subscription
Fields in net.engio.mbassy.subscription declared as IMessageDispatcher Modifier and Type Field Description private IMessageDispatcher
Subscription. dispatcher
Methods in net.engio.mbassy.subscription that return IMessageDispatcher Modifier and Type Method Description protected IMessageDispatcher
SubscriptionFactory. buildDispatcher(SubscriptionContext context, IHandlerInvocation invocation)
Constructors in net.engio.mbassy.subscription with parameters of type IMessageDispatcher Constructor Description Subscription(SubscriptionContext context, IMessageDispatcher dispatcher, java.util.Collection<java.lang.Object> listeners)
-