接口 MessageListener<T>
-
-
方法详细资料
-
received
void received(Consumer<T> consumer, Message<T> msg)
This method is called whenever a new message is received.Messages are guaranteed to be delivered in order and from the same thread for a single consumer
This method will only be called once for each message, unless either application or broker crashes.
Application is responsible for acking message by calling any of consumer acknowledgement methods.
Application is responsible of handling any exception that could be thrown while processing the message.
- 参数:
consumer- the consumer that received the messagemsg- the message object
-
-