Uses of Class
io.lettuce.core.GeoCoordinates
| 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 GeoCoordinates in io.lettuce.core
Methods in io.lettuce.core that return GeoCoordinates Modifier and Type Method Description static GeoCoordinatesGeoCoordinates. create(Number x, Number y)Creates newGeoCoordinates.GeoCoordinatesGeoValue. getCoordinates()GeoCoordinatesGeoWithin. getCoordinates()Methods in io.lettuce.core that return types with arguments of type GeoCoordinates Modifier and Type Method Description RedisFuture<List<GeoCoordinates>>AbstractRedisAsyncCommands. geopos(K key, V... members)Flux<Value<GeoCoordinates>>AbstractRedisReactiveCommands. geopos(K key, V... members)Methods in io.lettuce.core with parameters of type GeoCoordinates Modifier and Type Method Description static <T extends V, V>
Value<V>GeoValue. from(GeoCoordinates coordinates, Optional<T> optional)static <T extends V, V>
Value<V>GeoValue. fromNullable(GeoCoordinates coordinates, T value)static <T extends V, V>
GeoValue<V>GeoValue. just(GeoCoordinates coordinates, T value)Method parameters in io.lettuce.core with type arguments of type GeoCoordinates Modifier and Type Method Description GeoValue<V>GeoValue. mapCoordinates(Function<? super GeoCoordinates,? extends GeoCoordinates> mapper)Returns aGeoValueconsisting of the results of applying the given function to theGeoCoordinatesof this element.GeoValue<V>GeoValue. mapCoordinates(Function<? super GeoCoordinates,? extends GeoCoordinates> mapper)Returns aGeoValueconsisting of the results of applying the given function to theGeoCoordinatesof this element.Constructors in io.lettuce.core with parameters of type GeoCoordinates Constructor Description GeoWithin(V member, Double distance, Long geohash, GeoCoordinates coordinates)Creates a newGeoWithin. -
Uses of GeoCoordinates in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async that return types with arguments of type GeoCoordinates Modifier and Type Method Description RedisFuture<List<GeoCoordinates>>RedisGeoAsyncCommands. geopos(K key, V... members)Get geo coordinates for themembers. -
Uses of GeoCoordinates in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive that return types with arguments of type GeoCoordinates Modifier and Type Method Description Flux<Value<GeoCoordinates>>RedisGeoReactiveCommands. geopos(K key, V... members)Get geo coordinates for themembers. -
Uses of GeoCoordinates in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync that return types with arguments of type GeoCoordinates Modifier and Type Method Description List<GeoCoordinates>RedisGeoCommands. geopos(K key, V... members)Get geo coordinates for themembers. -
Uses of GeoCoordinates in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async that return types with arguments of type GeoCoordinates Modifier and Type Method Description AsyncExecutions<List<GeoCoordinates>>NodeSelectionGeoAsyncCommands. geopos(K key, V... members)Get geo coordinates for themembers. -
Uses of GeoCoordinates in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync that return types with arguments of type GeoCoordinates Modifier and Type Method Description Executions<List<GeoCoordinates>>NodeSelectionGeoCommands. geopos(K key, V... members)Get geo coordinates for themembers. -
Uses of GeoCoordinates in io.lettuce.core.output
Methods in io.lettuce.core.output that return types with arguments of type GeoCoordinates Modifier and Type Method Description StreamingOutput.Subscriber<GeoCoordinates>GeoCoordinatesListOutput. getSubscriber()StreamingOutput.Subscriber<Value<GeoCoordinates>>GeoCoordinatesValueListOutput. getSubscriber()Method parameters in io.lettuce.core.output with type arguments of type GeoCoordinates Modifier and Type Method Description voidGeoCoordinatesListOutput. setSubscriber(StreamingOutput.Subscriber<GeoCoordinates> subscriber)voidGeoCoordinatesValueListOutput. setSubscriber(StreamingOutput.Subscriber<Value<GeoCoordinates>> subscriber)