few comments added

pull/485/head
Nikita 9 years ago
parent 62d4e85d2a
commit 1d123af02b

@ -36,6 +36,11 @@ public interface RLexSortedSet extends RLexSortedSetAsync, Set<String>, RExpirab
*/
Integer revRank(String o);
/**
* Read all values at once.
*
* @return
*/
Collection<String> readAll();
int removeRangeTail(String fromElement, boolean fromInclusive);

@ -29,6 +29,11 @@ public interface RLexSortedSetAsync extends RCollectionAsync<String> {
Future<String> lastAsync();
/**
* Read all values at once.
*
* @return
*/
Future<Collection<String>> readAllAsync();
Future<Integer> removeRangeAsync(String fromElement, boolean fromInclusive, String toElement, boolean toInclusive);

Loading…
Cancel
Save