Package it.tidalwave.messagebus
Interface MessageBus.Listener<T>
-
- Enclosing interface:
- MessageBus
public static interface MessageBus.Listener<T>
A listener to receive notifications from aMessageBus
.- Stereotype:
- Listener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
notify(T message)
Notifies the reception of the given message.
-
-
-
Method Detail
-
notify
void notify(@Nonnull T message)
Notifies the reception of the given message.- Parameters:
message
- the event
-
-