17
17
18
18
import static org .springframework .data .redis .connection .RedisGeoCommands .*;
19
19
20
- import org .springframework .data .redis .domain .geo .GeoReference ;
21
- import org .springframework .data .redis .domain .geo .GeoShape ;
22
20
import reactor .core .publisher .Flux ;
23
21
import reactor .core .publisher .Mono ;
24
22
43
41
import org .springframework .data .redis .connection .ReactiveRedisConnection .MultiValueResponse ;
44
42
import org .springframework .data .redis .connection .ReactiveRedisConnection .NumericResponse ;
45
43
import org .springframework .data .redis .connection .RedisGeoCommands .GeoRadiusCommandArgs .Flag ;
44
+ import org .springframework .data .redis .domain .geo .GeoReference ;
45
+ import org .springframework .data .redis .domain .geo .GeoShape ;
46
46
import org .springframework .lang .Nullable ;
47
47
import org .springframework .util .Assert ;
48
48
@@ -1279,7 +1279,7 @@ public static GeoSearchCommand within(GeoShape shape) {
1279
1279
/**
1280
1280
* Sets the geoset {@literal key}. Constructs a new command instance with all previously configured properties.
1281
1281
*
1282
- * @param member must not be {@literal null}.
1282
+ * @param reference must not be {@literal null}.
1283
1283
* @return a new {@link GeoSearchCommand} with {@literal key} applied.
1284
1284
*/
1285
1285
public GeoSearchCommand at (GeoReference <ByteBuffer > reference ) {
@@ -1292,7 +1292,7 @@ public GeoSearchCommand at(GeoReference<ByteBuffer> reference) {
1292
1292
/**
1293
1293
* Sets the geoset {@literal key}. Constructs a new command instance with all previously configured properties.
1294
1294
*
1295
- * @param member must not be {@literal null}.
1295
+ * @param key must not be {@literal null}.
1296
1296
* @return a new {@link GeoSearchCommand} with {@literal key} applied.
1297
1297
*/
1298
1298
public GeoSearchCommand in (ByteBuffer key ) {
@@ -1370,7 +1370,7 @@ public static GeoSearchStoreCommand within(GeoShape shape) {
1370
1370
/**
1371
1371
* Sets the geoset {@literal key}. Constructs a new command instance with all previously configured properties.
1372
1372
*
1373
- * @param member must not be {@literal null}.
1373
+ * @param reference must not be {@literal null}.
1374
1374
* @return a new {@link GeoSearchStoreCommand} with {@literal key} applied.
1375
1375
*/
1376
1376
public GeoSearchStoreCommand at (GeoReference <ByteBuffer > reference ) {
@@ -1383,7 +1383,7 @@ public GeoSearchStoreCommand at(GeoReference<ByteBuffer> reference) {
1383
1383
/**
1384
1384
* Sets the geoset {@literal key}. Constructs a new command instance with all previously configured properties.
1385
1385
*
1386
- * @param member must not be {@literal null}.
1386
+ * @param key must not be {@literal null}.
1387
1387
* @return a new {@link GeoSearchStoreCommand} with {@literal key} applied.
1388
1388
*/
1389
1389
public GeoSearchStoreCommand in (ByteBuffer key ) {
@@ -1396,7 +1396,7 @@ public GeoSearchStoreCommand in(ByteBuffer key) {
1396
1396
/**
1397
1397
* Sets the geoset {@literal destKey}. Constructs a new command instance with all previously configured properties.
1398
1398
*
1399
- * @param member must not be {@literal null}.
1399
+ * @param destKey must not be {@literal null}.
1400
1400
* @return a new {@link GeoSearchStoreCommand} with {@literal destKey} applied.
1401
1401
*/
1402
1402
public GeoSearchStoreCommand storeAt (ByteBuffer destKey ) {
0 commit comments