DATAREDIS-1070 - Polishing.

Fix also BoundZSetOperations and ReactiveZSetOperations.

Original pull request: #502.
This commit is contained in:
Mark Paluch
2019-11-26 14:13:12 +01:00
parent 6007cdb648
commit 0a8cf37779
2 changed files with 2 additions and 2 deletions

View File

@@ -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);

View File

@@ -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);