We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The JUSTID flags allows to obtain the message id from the PEL without increasing the retry counter.
JUSTID
Cannot use XCLAIM with JUSTID.
XCLAIM
RedisFuture<List<String>> xClaimJustId(K key, Consumer<K> consumer, XClaimArgs args, String... messageIds); Flux<String> xClaimJustId(K key, Consumer<K> consumer, XClaimArgs args, String... messageIds);
Add justid to XClaimArgs and allow to use it with the existing methods so that it returns StreamMessage with an empty body.
justid
XClaimArgs
StreamMessage
The text was updated successfully, but these errors were encountered:
Support JUSTID flag of XCLAIM command #1233
527f0a6
We now support XClaimArgs.justid() that requests just the message id without returning the body.
02330b2
That's fixed now. Calling XCLAIM with JUSTID returns StreamMessage objects whose body is null
body
null
Sorry, something went wrong.
No branches or pull requests
Feature Request
The
JUSTID
flags allows to obtain the message id from the PEL without increasing the retry counter.Is your feature request related to a problem? Please describe
Cannot use
XCLAIM
withJUSTID
.Describe the solution you'd like
Describe alternatives you've considered
Add
justid
toXClaimArgs
and allow to use it with the existing methods so that it returnsStreamMessage
with an empty body.The text was updated successfully, but these errors were encountered: