Uses of Interface
io.vertx.redis.client.Request
-
-
Uses of Request in io.vertx.redis.client
Methods in io.vertx.redis.client that return Request Modifier and Type Method Description RequestRequest. arg(boolean arg)Adds a boolean encoded to stringdefault RequestRequest. arg(byte arg)Adds a byte encoded to stringRequestRequest. arg(byte[] arg)Adds a byte arraydefault RequestRequest. arg(double arg)Adds a double encoded to stringdefault RequestRequest. arg(float arg)Adds a float encoded to stringdefault RequestRequest. arg(int arg)Adds a int encoded to stringRequestRequest. arg(long arg)Adds a long encoded to stringdefault RequestRequest. arg(short arg)Adds a short encoded to stringRequestRequest. arg(Buffer arg)Adds a String key argumentdefault RequestRequest. arg(JsonArray arg)Adds a JsonArray argument, the encoding will serialize the json as value0, value1, ...default RequestRequest. arg(JsonObject arg)Adds a JsonObject argument, the encoding will serialize the json as key0, value0, key1, value1, ...default RequestRequest. arg(String arg)Adds a String argument using UTF8 character encodingdefault RequestRequest. arg(String arg, String enc)Adds a String using a specific character encoding argumentstatic RequestRequest. cmd(Command command)Creates a new request.static RequestRequest. cmd(Command command, Object... args)Methods in io.vertx.redis.client that return types with arguments of type Request Modifier and Type Method Description Future<List<List<Request>>>RedisCluster. groupByNodes(List<Request> requests)Groups therequestssuch that all requests in each inner list in the result are guaranteed to be sent to the same Redis master node.Methods in io.vertx.redis.client with parameters of type Request Modifier and Type Method Description Future<List<Response>>RedisCluster. onAllMasterNodes(Request request)Runs therequestagainst all master nodes in the cluster.Future<List<Response>>RedisCluster. onAllNodes(Request request)Runs therequestagainst all nodes in the cluster.Future<Response>Redis. send(Request command)Send the given command to the Redis server or cluster.Future<Response>RedisConnection. send(Request command)Send the given command to the redis server or cluster.Method parameters in io.vertx.redis.client with type arguments of type Request Modifier and Type Method Description Future<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.Future<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.Future<List<List<Request>>>RedisCluster. groupByNodes(List<Request> requests)Groups therequestssuch that all requests in each inner list in the result are guaranteed to be sent to the same Redis master node.
-