Package | Description |
---|---|
io.vertx.redis | |
io.vertx.redis.op |
Modifier and Type | Method and Description |
---|---|
RedisClient |
RedisClient.hscan(String key,
String cursor,
ScanOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler)
Incrementally iterate hash fields and associated values
|
RedisTransaction |
RedisTransaction.hscan(String key,
String cursor,
ScanOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Incrementally iterate hash fields and associated values
|
RedisClient |
RedisClient.scan(String cursor,
ScanOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler)
Incrementally iterate the keys space
|
RedisTransaction |
RedisTransaction.scan(String cursor,
ScanOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Incrementally iterate the keys space
|
RedisClient |
RedisClient.sscan(String key,
String cursor,
ScanOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler)
Incrementally iterate Set elements
|
RedisTransaction |
RedisTransaction.sscan(String key,
String cursor,
ScanOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Incrementally iterate Set elements
|
RedisClient |
RedisClient.zscan(String key,
String cursor,
ScanOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.core.json.JsonArray>> handler)
Incrementally iterate sorted sets elements and associated scores
|
RedisTransaction |
RedisTransaction.zscan(String key,
String cursor,
ScanOptions options,
io.vertx.core.Handler<io.vertx.core.AsyncResult<String>> handler)
Incrementally iterate sorted sets elements and associated scores
|
Modifier and Type | Field and Description |
---|---|
static ScanOptions |
ScanOptions.NONE |
Modifier and Type | Method and Description |
---|---|
ScanOptions |
ScanOptions.setCount(int count) |
ScanOptions |
ScanOptions.setMatch(String pattern) |
Constructor and Description |
---|
ScanOptions(ScanOptions copy) |
Copyright © 2020 Eclipse. All rights reserved.