Skip to content

Commit

Permalink
Update options to point to valkey
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Carbonetto <[email protected]>
  • Loading branch information
acarbonetto committed Jun 26, 2024
1 parent b9a80d8 commit 3b653d0
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* Optional arguments to {@link StreamBaseCommands#xadd(String, Map, StreamAddOptions)}
*
* @see <a href="https://redis.io/commands/xadd/">redis.io</a>
* @see <a href="https://valkey.io/commands/xadd/">valkey.io</a>
*/
@Builder
public final class StreamAddOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Arguments for {@link StreamBaseCommands#xpending} to specify additional filter items by idle time
* and consumer.
*
* @see <a href="https://redis.io/commands/xpending/">redis.io</a>
* @see <a href="https://valkey.io/commands/xpending/">valkey.io</a>
*/
@Builder
public class StreamPendingOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
* glide.api.commands.StreamBaseCommands#xrevrange} to specify the starting and ending range for the
* stream search by stream ID.
*
* @see <a href="https://redis.io/commands/xrange/">redis.io</a>
* @see <a href="https://redis.io/commands/xrevrange/">redis.io</a>
* @see <a href="https://valkey.io/commands/xrange/">valkey.io</a>
* @see <a href="https://valkey.io/commands/xrevrange/">valkey.io</a>
*/
public interface StreamRange {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* Optional arguments for {@link StreamBaseCommands#xread(Map, StreamReadOptions)}
*
* @see <a href="https://redis.io/commands/xread/">redis.io</a>
* @see <a href="https://valkey.io/commands/xread/">valkey.io</a>
*/
@SuperBuilder
public class StreamReadOptions {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
/**
* Optional arguments for {@link StreamBaseCommands#xtrim(String, StreamTrimOptions)}
*
* @see <a href="https://redis.io/commands/xtrim/">redis.io</a>
* @see <a href="https://valkey.io/commands/xtrim/">valkey.io</a>
*/
public abstract class StreamTrimOptions {

Expand Down

0 comments on commit 3b653d0

Please sign in to comment.