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(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(Buffer arg)Adds a String key argumentRequestRequest. 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 command.static RequestRequest. cmd(Command command, Object[] args)static RequestRequest. newInstance(Request arg)RequestRequest. nullArg()Deprecated.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.RedisRedis. send(Request command)Send the given command to the redis server or cluster.RedisRedis. send(Request command, Handler<AsyncResult<Response>> onSend)Send the given command to the redis server or cluster.RedisConnectionRedisConnection. send(Request command)Send the given command to the redis server or cluster.RedisConnectionRedisConnection. send(Request command, Handler<AsyncResult<Response>> onSend)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 RedisRedis. 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.RedisRedis. batch(List<Request> commands, Handler<AsyncResult<List<Response>>> onSend)Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.RedisConnectionRedisConnection. 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.RedisConnectionRedisConnection. batch(List<Request> commands, Handler<AsyncResult<List<Response>>> onSend)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.
-