Package it.tidalwave.messagebus.spi
Class SimpleMessageBus
- java.lang.Object
-
- it.tidalwave.messagebus.spi.SimpleMessageBus
-
- All Implemented Interfaces:
MessageBus
@ThreadSafe public class SimpleMessageBus extends java.lang.Object implements MessageBus
A partial implementation ofMessageBus.- Author:
- Fabrizio Giudici
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface it.tidalwave.messagebus.MessageBus
MessageBus.Listener<T>
-
-
Constructor Summary
Constructors Constructor Description SimpleMessageBus()Creates a new instance with aSimpleAsyncMessageDeliverystrategy for delivery.SimpleMessageBus(java.util.concurrent.Executor executor)Creates a new instance given an executor and aSimpleAsyncMessageDeliverystrategy for delivery.SimpleMessageBus(java.util.concurrent.Executor executor, MessageDelivery messageDelivery)Creates a new instance given an executor and a strategy for delivery.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected <T> voiddispatchMessage(java.lang.Class<T> topic, T message)Dispatches a message.<T> voidpublish(java.lang.Class<T> topic, T message)Publishes the given message and topic.<T> voidpublish(T message)Publishes the given event.<T> voidsubscribe(java.lang.Class<T> topic, MessageBus.Listener<T> listener)Subscribes aMessageBus.Listenerto a topic.voidunsubscribe(MessageBus.Listener<?> listener)Unsubscribes aMessageBus.Listener.
-
-
-
Constructor Detail
-
SimpleMessageBus
public SimpleMessageBus()
Creates a new instance with aSimpleAsyncMessageDeliverystrategy for delivery. It will use its own thread pool.
-
SimpleMessageBus
public SimpleMessageBus(@Nonnull java.util.concurrent.Executor executor)Creates a new instance given an executor and aSimpleAsyncMessageDeliverystrategy for delivery.- Parameters:
executor- theExecutor
-
SimpleMessageBus
public SimpleMessageBus(@Nonnull java.util.concurrent.Executor executor, @Nonnull MessageDelivery messageDelivery)Creates a new instance given an executor and a strategy for delivery.- Parameters:
executor- theExecutormessageDelivery- the strategy for delivery
-
-
Method Detail
-
publish
public <T> void publish(@Nonnull T message)Publishes the given event. The topic is the class of the event.- Specified by:
publishin interfaceMessageBus- Type Parameters:
T- the static type of the topic- Parameters:
message- the event
-
publish
public <T> void publish(@Nonnull java.lang.Class<T> topic, @Nonnull T message)Publishes the given message and topic. Passing an explicit topic can be useful when dealing with a hierarchy of events (so, perhaps a subclass is passed but the topic is the root of the hierarchy).- Specified by:
publishin interfaceMessageBus- Type Parameters:
T- the static type of the topic- Parameters:
topic- the topicmessage- the message
-
subscribe
public <T> void subscribe(@Nonnull java.lang.Class<T> topic, @Nonnull MessageBus.Listener<T> listener)Subscribes aMessageBus.Listenerto a topic.- Specified by:
subscribein interfaceMessageBus- Type Parameters:
T- the static type of the topic- Parameters:
topic- the topiclistener- the listener
-
unsubscribe
public void unsubscribe(@Nonnull MessageBus.Listener<?> listener)Unsubscribes aMessageBus.Listener.- Specified by:
unsubscribein interfaceMessageBus- Parameters:
listener- the listener
-
dispatchMessage
protected <T> void dispatchMessage(@Nonnull java.lang.Class<T> topic, @Nonnull T message)Dispatches a message.- Type Parameters:
T- the static type of the topic- Parameters:
topic- the dynamic type of the topicmessage- the message
-
-