@InterfaceAudience.Public @InterfaceStability.Stable public interface MessageListener<T> extends Serializable
| Modifier and Type | Method and Description |
|---|---|
default void |
reachedEndOfTopic(Consumer<T> consumer)
Get the notification when a topic is terminated.
|
void |
received(Consumer<T> consumer,
Message<T> msg)
This method is called whenever a new message is received.
|
void received(Consumer<T> consumer, Message<T> msg)
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 objectCopyright © 2017–2021 Apache Software Foundation. All rights reserved.