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
A new way to read from the last element of the stream was introduced to XREAD with redis/redis#7388
XREAD
We might want to add a convenience method to the XReadArgs.StreamOffset class.
XReadArgs.StreamOffset
The feature could still be used if the + sign is used as offset in the XReadArgs.StreamOffset constructor.
+
Having a dedicated method would make it easier for the consumers of the driver.
Add a new public static method that creates a StreamOffset with the hardcoded offset sign.
StreamOffset
None.
Similar to how the existing .latest(K name) and .lastConsumed(K name) methods were used.
.latest(K name)
.lastConsumed(K name)
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Feature Request
A new way to read from the last element of the stream was introduced to
XREAD
with redis/redis#7388We might want to add a convenience method to the
XReadArgs.StreamOffset
class.Is your feature request related to a problem? Please describe
The feature could still be used if the
+
sign is used as offset in theXReadArgs.StreamOffset
constructor.Having a dedicated method would make it easier for the consumers of the driver.
Describe the solution you'd like
Add a new public static method that creates a
StreamOffset
with the hardcoded offset sign.Describe alternatives you've considered
None.
Teachability, Documentation, Adoption, Migration Strategy
Similar to how the existing
.latest(K name)
and.lastConsumed(K name)
methods were used.The text was updated successfully, but these errors were encountered: