public interface RLexSortedSetAsync extends RCollectionAsync<String>
Modifier and Type | Method and Description |
---|---|
RFuture<Integer> |
countAsync(String fromElement,
boolean fromInclusive,
String toElement,
boolean toInclusive) |
RFuture<Integer> |
countHeadAsync(String toElement,
boolean toInclusive) |
RFuture<Integer> |
countTailAsync(String fromElement,
boolean fromInclusive) |
RFuture<String> |
firstAsync() |
RFuture<String> |
lastAsync() |
RFuture<String> |
pollFirstAsync() |
RFuture<String> |
pollLastAsync() |
RFuture<Collection<String>> |
rangeAsync(int startIndex,
int endIndex) |
RFuture<Collection<String>> |
rangeAsync(String fromElement,
boolean fromInclusive,
String toElement,
boolean toInclusive) |
RFuture<Collection<String>> |
rangeAsync(String fromElement,
boolean fromInclusive,
String toElement,
boolean toInclusive,
int offset,
int count) |
RFuture<Collection<String>> |
rangeHeadAsync(String toElement,
boolean toInclusive) |
RFuture<Collection<String>> |
rangeHeadAsync(String toElement,
boolean toInclusive,
int offset,
int count) |
RFuture<Collection<String>> |
rangeTailAsync(String fromElement,
boolean fromInclusive) |
RFuture<Collection<String>> |
rangeTailAsync(String fromElement,
boolean fromInclusive,
int offset,
int count) |
RFuture<Integer> |
rankAsync(String o) |
RFuture<Collection<String>> |
readAllAsync()
Read all values at once.
|
RFuture<Integer> |
removeRangeAsync(String fromElement,
boolean fromInclusive,
String toElement,
boolean toInclusive) |
RFuture<Integer> |
removeRangeHeadAsync(String toElement,
boolean toInclusive) |
RFuture<Integer> |
removeRangeTailAsync(String fromElement,
boolean fromInclusive) |
RFuture<Integer> |
revRankAsync(String o)
Returns rank of value, with the scores ordered from high to low.
|
addAllAsync, addAsync, containsAllAsync, containsAsync, removeAllAsync, removeAsync, retainAllAsync, sizeAsync
clearExpireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
deleteAsync, isExistsAsync, migrateAsync, moveAsync, renameAsync, renamenxAsync, touchAsync, unlinkAsync
RFuture<Collection<String>> readAllAsync()
RFuture<Integer> removeRangeAsync(String fromElement, boolean fromInclusive, String toElement, boolean toInclusive)
RFuture<Integer> removeRangeTailAsync(String fromElement, boolean fromInclusive)
RFuture<Collection<String>> rangeTailAsync(String fromElement, boolean fromInclusive)
RFuture<Collection<String>> rangeHeadAsync(String toElement, boolean toInclusive)
RFuture<Collection<String>> rangeAsync(String fromElement, boolean fromInclusive, String toElement, boolean toInclusive)
RFuture<Collection<String>> rangeTailAsync(String fromElement, boolean fromInclusive, int offset, int count)
RFuture<Collection<String>> rangeHeadAsync(String toElement, boolean toInclusive, int offset, int count)
RFuture<Collection<String>> rangeAsync(String fromElement, boolean fromInclusive, String toElement, boolean toInclusive, int offset, int count)
RFuture<Integer> countAsync(String fromElement, boolean fromInclusive, String toElement, boolean toInclusive)
RFuture<Collection<String>> rangeAsync(int startIndex, int endIndex)
Copyright © 2014–2017 The Redisson Project. All rights reserved.