Uses of Class
io.vertx.reactivex.redis.client.Request
-
Packages that use Request Package Description io.vertx.reactivex.redis.client -
-
Uses of Request in io.vertx.reactivex.redis.client
Fields in io.vertx.reactivex.redis.client with type parameters of type Request Modifier and Type Field Description static TypeArg<Request>Request. __TYPE_ARGMethods in io.vertx.reactivex.redis.client that return Request Modifier and Type Method Description RequestRequest. arg(boolean arg)Adds a boolean encoded to stringRequestRequest. arg(byte arg)Adds a byte encoded to stringRequestRequest. arg(byte[] arg)Adds a byte arrayRequestRequest. arg(double arg)Adds a double encoded to stringRequestRequest. arg(float arg)Adds a float encoded to stringRequestRequest. arg(int arg)Adds a int encoded to stringRequestRequest. arg(long arg)Adds a long encoded to stringRequestRequest. arg(short arg)Adds a short encoded to stringRequestRequest. arg(Buffer arg)Adds a String key argumentRequestRequest. arg(JsonArray arg)Adds a JsonArray argument, the encoding will serialize the json as value0, value1, ...RequestRequest. arg(JsonObject arg)Adds a JsonObject argument, the encoding will serialize the json as key0, value0, key1, value1, ...RequestRequest. arg(String arg)Adds a String argument using UTF8 character encodingRequestRequest. 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)static RequestRequest. newInstance(Request arg)Methods in io.vertx.reactivex.redis.client with parameters of type Request Modifier and Type Method Description io.reactivex.Maybe<Response>Redis. rxSend(Request command)Send the given command to the Redis server or cluster.io.reactivex.Maybe<Response>RedisConnection. rxSend(Request command)Send the given command to the redis server or 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.reactivex.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.io.reactivex.Single<List<Response>>Redis. rxBatch(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.reactivex.Single<List<Response>>RedisConnection. rxBatch(List<Request> commands)Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.
-