Package it.tidalwave.messagebus
Interface MessageBusHelper.Adapter
-
- Enclosing class:
- MessageBusHelper
public static interface MessageBusHelper.Adapter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <TOPIC> MessageBusHelper.MethodAdapter<TOPIC>
createMethodAdapter(java.lang.Object object, java.lang.reflect.Method method, java.lang.Class<TOPIC> topic)
<TOPIC> void
publish(java.lang.Class<TOPIC> topic, TOPIC message)
void
publish(java.lang.Object message)
-
-
-
Method Detail
-
createMethodAdapter
@Nonnull <TOPIC> MessageBusHelper.MethodAdapter<TOPIC> createMethodAdapter(@Nonnull java.lang.Object object, @Nonnull java.lang.reflect.Method method, @Nonnull java.lang.Class<TOPIC> topic)
-
publish
void publish(@Nonnull java.lang.Object message)
-
publish
<TOPIC> void publish(java.lang.Class<TOPIC> topic, @Nonnull TOPIC message)
-
-