[Java] feat(LitePushConsumer): enable Lite Push Consumer to suspend consumption#1206
Merged
lizhimins merged 1 commit intoapache:masterfrom Apr 7, 2026
Merged
Conversation
This commit enables Lite Push Consumer to handle suspended consumption results by: 1. Creating corresponding FIFO consume service based on whether it's a LiteConsumer in PushConsumerImpl 2. Converting ConsumeResult from enum to class to support custom result types including suspension 3. Adding LitePushConsumerBuilder configuration option to enable FIFO acceleration processing 4. Refactoring FifoConsumeService to improve flexibility in message grouping and iterative consumption 5. Supporting suspended consume result handling in LitePushConsumer 6. Synchronizing subscription manager to immediately sync all Lite subscriptions after startup Change-Id: I68c7b00599a990ada83083792c53f2edf927a21d
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #1206 +/- ##
============================================
+ Coverage 53.26% 53.73% +0.46%
- Complexity 651 784 +133
============================================
Files 208 220 +12
Lines 14303 14440 +137
Branches 5845 5576 -269
============================================
+ Hits 7619 7759 +140
+ Misses 6308 6282 -26
- Partials 376 399 +23
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit enables Lite Push Consumer to handle suspended consumption results by: