DATAREDIS-1070 - Polishing.
Fix also BoundZSetOperations and ReactiveZSetOperations. Original pull request: #502.
This commit is contained in:
@@ -170,7 +170,7 @@ public interface BoundZSetOperations<K, V> extends BoundKeyOperations<K> {
|
||||
* @param min
|
||||
* @param max
|
||||
* @return {@literal null} when used in pipeline / transaction.
|
||||
* @see <a href="https://redis.io/commands/zrevrange">Redis Documentation: ZREVRANGE</a>
|
||||
* @see <a href="https://redis.io/commands/zrevrangebyscore">Redis Documentation: ZREVRANGEBYSCORE</a>
|
||||
*/
|
||||
@Nullable
|
||||
Set<V> reverseRangeByScore(double min, double max);
|
||||
|
||||
@@ -189,7 +189,7 @@ public interface ReactiveZSetOperations<K, V> {
|
||||
* @param key must not be {@literal null}.
|
||||
* @param range
|
||||
* @return
|
||||
* @see <a href="https://redis.io/commands/zrevrange">Redis Documentation: ZREVRANGE</a>
|
||||
* @see <a href="https://redis.io/commands/zrevrangebyscore">Redis Documentation: ZREVRANGEBYSCORE</a>
|
||||
*/
|
||||
Flux<V> reverseRangeByScore(K key, Range<Double> range);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user