Package com.rabbitmq.stream
Interface MessageHandler
-
public interface MessageHandler
Callback API for inbound messages.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
MessageHandler.Context
Information about the message.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
handle(MessageHandler.Context context, Message message)
Callback for an inbound message.
-
-
-
Method Detail
-
handle
void handle(MessageHandler.Context context, Message message)
Callback for an inbound message.- Parameters:
context
- context on the messagemessage
- the message
-
-