Uses of Class
io.lettuce.core.Value
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
| io.lettuce.core.api.reactive |
Standalone Redis API for reactive command execution.
|
| io.lettuce.core.api.sync |
Standalone Redis API for synchronous executed commands.
|
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
| io.lettuce.core.output |
Implementation of different output protocols including the Streaming API.
|
-
Uses of Value in io.lettuce.core
Subclasses of Value in io.lettuce.core Modifier and Type Class Description classGeoValue<V>A Geo value extension toValue.classKeyValue<K,V>A key-value container extension toValue.classScoredValue<V>A scored-value extension toValue.Methods in io.lettuce.core that return Value Modifier and Type Method Description static <V> Value<V>Value. empty()Returns an emptyValueinstance.static <T extends V, V>
Value<V>GeoValue. from(GeoCoordinates coordinates, Optional<T> optional)static <T extends V, V>
Value<V>ScoredValue. from(double score, Optional<T> optional)static <T extends V, V>
Value<V>Value. from(Optional<T> optional)static <T extends V, V>
Value<V>GeoValue. fromNullable(GeoCoordinates coordinates, T value)static <T extends V, V>
Value<V>ScoredValue. fromNullable(double score, T value)static <T extends V, V>
Value<V>Value. fromNullable(T value)Creates aValuefrom avalue.static <T extends V, V>
Value<V>Value. just(T value)Creates aValuefrom avalue.<R> Value<R>Value. map(Function<? super V,? extends R> mapper)Returns aValueconsisting of the results of applying the given function to the value of this element.Methods in io.lettuce.core that return types with arguments of type Value Modifier and Type Method Description Flux<Value<Long>>AbstractRedisReactiveCommands. bitfield(K key, BitFieldArgs args)RedisFuture<List<Value<String>>>AbstractRedisAsyncCommands. geohash(K key, V... members)Flux<Value<String>>AbstractRedisReactiveCommands. geohash(K key, V... members)Flux<Value<GeoCoordinates>>AbstractRedisReactiveCommands. geopos(K key, V... members) -
Uses of Value in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async that return types with arguments of type Value Modifier and Type Method Description RedisFuture<List<Value<String>>>RedisGeoAsyncCommands. geohash(K key, V... members)Retrieve Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index. -
Uses of Value in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive that return types with arguments of type Value Modifier and Type Method Description Flux<Value<Long>>RedisStringReactiveCommands. bitfield(K key, BitFieldArgs bitFieldArgs)ExecuteBITFIELDwith its subcommands.Flux<Value<String>>RedisGeoReactiveCommands. geohash(K key, V... members)Retrieve Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index.Flux<Value<GeoCoordinates>>RedisGeoReactiveCommands. geopos(K key, V... members)Get geo coordinates for themembers. -
Uses of Value in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync that return types with arguments of type Value Modifier and Type Method Description List<Value<String>>RedisGeoCommands. geohash(K key, V... members)Retrieve Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index. -
Uses of Value in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async that return types with arguments of type Value Modifier and Type Method Description AsyncExecutions<List<Value<String>>>NodeSelectionGeoAsyncCommands. geohash(K key, V... members)Retrieve Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index. -
Uses of Value in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync that return types with arguments of type Value Modifier and Type Method Description Executions<List<Value<String>>>NodeSelectionGeoCommands. geohash(K key, V... members)Retrieve Geohash strings representing the position of one or more elements in a sorted set value representing a geospatial index. -
Uses of Value in io.lettuce.core.output
Methods in io.lettuce.core.output that return types with arguments of type Value Modifier and Type Method Description StreamingOutput.Subscriber<Value<GeoCoordinates>>GeoCoordinatesValueListOutput. getSubscriber()StreamingOutput.Subscriber<Value<String>>StringValueListOutput. getSubscriber()StreamingOutput.Subscriber<Value<V>>ValueValueListOutput. getSubscriber()Method parameters in io.lettuce.core.output with type arguments of type Value Modifier and Type Method Description voidGeoCoordinatesValueListOutput. setSubscriber(StreamingOutput.Subscriber<Value<GeoCoordinates>> subscriber)voidStringValueListOutput. setSubscriber(StreamingOutput.Subscriber<Value<String>> subscriber)voidValueValueListOutput. setSubscriber(StreamingOutput.Subscriber<Value<V>> subscriber)