Uses of Interface
net.engio.mbassy.dispatch.IHandlerInvocation
-
Packages that use IHandlerInvocation Package Description net.engio.mbassy.dispatch net.engio.mbassy.subscription -
-
Uses of IHandlerInvocation in net.engio.mbassy.dispatch
Classes in net.engio.mbassy.dispatch that implement IHandlerInvocation Modifier and Type Class Description class
AsynchronousHandlerInvocation
This invocation will schedule the wrapped (decorated) invocation to be executed asynchronouslyclass
HandlerInvocation<HANDLER,MESSAGE>
This is the base class for handler invocations that already implements all context related methods only leaving the implementation of the actual invocation mechanism to the concrete subclass.class
ReflectiveHandlerInvocation
Uses reflection to invoke a message handler for a given message.class
SynchronizedHandlerInvocation
Synchronizes message handler invocations for all handlers that specify @SynchronizedFields in net.engio.mbassy.dispatch declared as IHandlerInvocation Modifier and Type Field Description private IHandlerInvocation
AsynchronousHandlerInvocation. delegate
private IHandlerInvocation
SynchronizedHandlerInvocation. delegate
private IHandlerInvocation
MessageDispatcher. invocation
Methods in net.engio.mbassy.dispatch that return IHandlerInvocation Modifier and Type Method Description IHandlerInvocation
DelegatingMessageDispatcher. getInvocation()
IHandlerInvocation
IMessageDispatcher. getInvocation()
Get the handler invocation that will be used to deliver the message to each listener.IHandlerInvocation
MessageDispatcher. getInvocation()
Constructors in net.engio.mbassy.dispatch with parameters of type IHandlerInvocation Constructor Description AsynchronousHandlerInvocation(IHandlerInvocation delegate)
MessageDispatcher(SubscriptionContext context, IHandlerInvocation invocation)
SynchronizedHandlerInvocation(IHandlerInvocation delegate)
-
Uses of IHandlerInvocation in net.engio.mbassy.subscription
Methods in net.engio.mbassy.subscription that return IHandlerInvocation Modifier and Type Method Description protected IHandlerInvocation
SubscriptionFactory. buildInvocationForHandler(SubscriptionContext context)
protected IHandlerInvocation
SubscriptionFactory. createBaseHandlerInvocation(SubscriptionContext context)
Methods in net.engio.mbassy.subscription with parameters of type IHandlerInvocation Modifier and Type Method Description protected IMessageDispatcher
SubscriptionFactory. buildDispatcher(SubscriptionContext context, IHandlerInvocation invocation)
-