Package it.tidalwave.messagebus.spi
Class SimpleAsyncMessageDelivery
java.lang.Object
it.tidalwave.messagebus.spi.SimpleAsyncMessageDelivery
- All Implemented Interfaces:
MessageDelivery
An implementation of
MessageDelivery
that dispatches messages as they are delivered, each one in a separated
thread.- Since:
- 2.2
- Author:
- Fabrizio Giudici
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<T> void
deliverMessage
(Class<T> topic, T message) Delivers a message.void
initialize
(SimpleMessageBus messageBusSupport) Initializes this object.
-
Constructor Details
-
SimpleAsyncMessageDelivery
public SimpleAsyncMessageDelivery()
-
-
Method Details
-
initialize
Description copied from interface:MessageDelivery
Initializes this object.- Specified by:
initialize
in interfaceMessageDelivery
- Parameters:
messageBusSupport
- the message bus
-
deliverMessage
Description copied from interface:MessageDelivery
Delivers a message.- Specified by:
deliverMessage
in interfaceMessageDelivery
- Type Parameters:
T
- the static type of the topic- Parameters:
topic
- the dynamic type of the topicmessage
- the message
-