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_ARGMethods in io.vertx.mutiny.redis.client that return Request Modifier and Type Method Description RequestRequest. arg(boolean arg)RequestRequest. arg(byte arg)RequestRequest. arg(byte[] arg)RequestRequest. arg(double arg)RequestRequest. arg(float arg)RequestRequest. arg(int arg)RequestRequest. arg(long arg)RequestRequest. arg(short arg)RequestRequest. arg(io.vertx.core.json.JsonArray arg)RequestRequest. arg(io.vertx.core.json.JsonObject arg)RequestRequest. arg(Buffer arg)RequestRequest. arg(String arg)RequestRequest. arg(String arg, String enc)static RequestRequest. cmd(Command command)static RequestRequest. cmd(Command command, Object[] args)static RequestRequest. newInstance(io.vertx.redis.client.Request arg)RequestRequest. nullArg()Deprecated.REDIS does not supportnullas 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.ResponseRedis. sendAndAwait(Request command)Blocking variant ofRedis.send(io.vertx.mutiny.redis.client.Request).ResponseRedisConnection. sendAndAwait(Request command)Blocking variant ofRedisConnection.send(io.vertx.mutiny.redis.client.Request).RedisRedis. sendAndForget(Request command)Variant ofRedis.send(io.vertx.mutiny.redis.client.Request)that ignores the result of the operation.RedisConnectionRedisConnection. 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 ofRedis.batch(List).List<Response>RedisConnection. batchAndAwait(List<Request> commands)Blocking variant ofRedisConnection.batch(List).RedisRedis. batchAndForget(List<Request> commands)Variant ofRedis.batch(List)that ignores the result of the operation.RedisConnectionRedisConnection. batchAndForget(List<Request> commands)Variant ofRedisConnection.batch(List)that ignores the result of the operation. 
 -