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_ARG
Methods in io.vertx.reactivex.redis.client that return Request Modifier and Type Method Description Request
Request. arg(boolean arg)
Adds a boolean encoded to stringRequest
Request. arg(byte arg)
Adds a byte encoded to stringRequest
Request. arg(byte[] arg)
Adds a byte arrayRequest
Request. arg(double arg)
Adds a double encoded to stringRequest
Request. arg(float arg)
Adds a float encoded to stringRequest
Request. arg(int arg)
Adds a int encoded to stringRequest
Request. arg(long arg)
Adds a long encoded to stringRequest
Request. arg(short arg)
Adds a short encoded to stringRequest
Request. arg(JsonArray arg)
Adds a JsonArray argument, the encoding will serialize the json as value0, value1, ...Request
Request. arg(JsonObject arg)
Adds a JsonObject argument, the encoding will serialize the json as key0, value0, key1, value1, ...Request
Request. arg(Buffer arg)
Adds a String key argumentRequest
Request. arg(String arg)
Adds a String argument using UTF8 character encodingRequest
Request. arg(String arg, String enc)
Adds a String using a specific character encoding argumentstatic Request
Request. cmd(Command command)
Creates a new request command.static Request
Request. cmd(Command command, Object[] args)
static Request
Request. newInstance(Request arg)
Request
Request. 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.Redis
Redis. send(Request command)
Send the given command to the redis server or cluster.Redis
Redis. send(Request command, Handler<AsyncResult<Response>> onSend)
Send the given command to the redis server or cluster.RedisConnection
RedisConnection. send(Request command)
Send the given command to the redis server or cluster.RedisConnection
RedisConnection. 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 Redis
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.Redis
Redis. 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.RedisConnection
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.RedisConnection
RedisConnection. 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.
-