Acknowledging messages using MicroProfile Reactive Messaging
Learn how to acknowledge messages using MicroProfile Reactive Messaging. Ensure reliable message handling in reactive applications. Prevent message loss by requiring message acknowledgment. Identify and resend undelivered messages. Open Liberty Project team.
At a Glance
Learn how to acknowledge messages by using MicroProfile Reactive Messaging.
MicroProfile Reactive Messaging provides a reliable way to handle messages in reactive applications. MicroProfile Reactive Messaging ensures that messages aren’t lost by requiring that messages that were delivered to the target server are acknowledged after they are processed. Every message that gets sent out must be acknowledged. This way, any messages that were delivered to the target service but not processed, for example, due to a system failure, can be identified and sent again.
The Open Liberty Project team