-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add synchronous acknowledgment methods to IConsumer interface (#111)
This commit introduces two new methods to the IConsumer interface: 1. `Acknowledge`, which provides a fire-and-forget mechanism for acknowledging all messages received by the consumer. This method does not wait for broker confirmation. 2. `IndividualAcknowledge`, similar to `Acknowledge`, but used for acknowledging individual messages without waiting for broker confirmation. Both methods are intended for scenarios where waiting for acknowledgment confirmation is not required, enhancing flexibility in message processing.
- Loading branch information
Showing
4 changed files
with
186 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters