Uses of Class
io.vertx.mutiny.redis.client.Request
-
Packages that use Request Package Description io.vertx.mutiny.redis.client -
-
Uses of Request in io.vertx.mutiny.redis.client
Fields in io.vertx.mutiny.redis.client with type parameters of type Request Modifier and Type Field Description static TypeArg<Request>
Request. __TYPE_ARG
Methods in io.vertx.mutiny.redis.client that return Request Modifier and Type Method Description Request
Request. arg(boolean arg)
Request
Request. arg(byte arg)
Request
Request. arg(byte[] arg)
Request
Request. arg(double arg)
Request
Request. arg(float arg)
Request
Request. arg(int arg)
Request
Request. arg(long arg)
Request
Request. arg(short arg)
Request
Request. arg(io.vertx.core.json.JsonArray arg)
Request
Request. arg(io.vertx.core.json.JsonObject arg)
Request
Request. arg(Buffer arg)
Request
Request. arg(String arg)
Request
Request. arg(String arg, String enc)
static Request
Request. cmd(Command command)
static Request
Request. newInstance(io.vertx.redis.client.Request arg)
Request
Request. nullArg()
Deprecated.REDIS does not supportnull
as a parameter, only as response.Methods in io.vertx.mutiny.redis.client with parameters of type Request Modifier and Type Method Description io.smallrye.mutiny.Uni<Response>
Redis. send(Request command)
Send the given command to the redis server or cluster.io.smallrye.mutiny.Uni<Response>
RedisConnection. send(Request command)
Send the given command to the redis server or cluster.Response
Redis. sendAndAwait(Request command)
Blocking variant ofRedis.send(io.vertx.mutiny.redis.client.Request)
.Response
RedisConnection. sendAndAwait(Request command)
Blocking variant ofRedisConnection.send(io.vertx.mutiny.redis.client.Request)
.Redis
Redis. sendAndForget(Request command)
Variant ofRedis.send(io.vertx.mutiny.redis.client.Request)
that ignores the result of the operation.RedisConnection
RedisConnection. sendAndForget(Request command)
Variant ofRedisConnection.send(io.vertx.mutiny.redis.client.Request)
that ignores the result of the operation.Method parameters in io.vertx.mutiny.redis.client with type arguments of type Request Modifier and Type Method Description io.smallrye.mutiny.Uni<List<Response>>
Redis. batch(List<Request> commands)
Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.io.smallrye.mutiny.Uni<List<Response>>
RedisConnection. batch(List<Request> commands)
Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.List<Response>
Redis. batchAndAwait(List<Request> commands)
Blocking variant ofio.vertx.mutiny.redis.client.Redis#batch(List
.) List<Response>
RedisConnection. batchAndAwait(List<Request> commands)
Blocking variant ofio.vertx.mutiny.redis.client.RedisConnection#batch(List
.) Redis
Redis. batchAndForget(List<Request> commands)
Variant ofio.vertx.mutiny.redis.client.Redis#batch(List
that ignores the result of the operation.) RedisConnection
RedisConnection. batchAndForget(List<Request> commands)
Variant ofio.vertx.mutiny.redis.client.RedisConnection#batch(List
that ignores the result of the operation.)
-