| Package | Description | 
|---|---|
| io.vertx.reactivex.redis.client | |
| io.vertx.redis.client | |
| io.vertx.rxjava.redis.client | 
| Modifier and Type | Method and Description | 
|---|---|
Request | 
Request.getDelegate()  | 
| Modifier and Type | Method and Description | 
|---|---|
static Request | 
Request.newInstance(Request arg)  | 
| Constructor and Description | 
|---|
Request(Request delegate)  | 
| Modifier and Type | Method and Description | 
|---|---|
Request | 
Request.arg(boolean arg)
Adds a boolean encoded to string 
 | 
Request | 
Request.arg(Buffer arg)
Adds a String key argument 
 | 
default Request | 
Request.arg(byte arg)
Adds a byte encoded to string 
 | 
Request | 
Request.arg(byte[] arg)
Adds a byte array 
 | 
default Request | 
Request.arg(int arg)
Adds a int encoded to string 
 | 
default Request | 
Request.arg(JsonArray arg)
Adds a JsonArray argument, the encoding will serialize the json as value0, value1, ... 
 | 
default Request | 
Request.arg(JsonObject arg)
Adds a JsonObject argument, the encoding will serialize the json as key0, value0, key1, value1, ... 
 | 
Request | 
Request.arg(long arg)
Adds a long encoded to string 
 | 
default Request | 
Request.arg(short arg)
Adds a short encoded to string 
 | 
default Request | 
Request.arg(String arg)
Adds a String argument using UTF8 character encoding 
 | 
default Request | 
Request.arg(String arg,
   String enc)
Adds a String using a specific character encoding argument 
 | 
static Request | 
Request.cmd(Command command)  | 
Request | 
Request.nullArg()
Adds a NULL encoded string 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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. 
 | 
default Redis | 
Redis.send(Request command,
    Handler<AsyncResult<Response>> onSend)
Send the given command to the redis server or cluster. 
 | 
default RedisConnection | 
RedisConnection.send(Request command,
    Handler<AsyncResult<Response>> onSend)
Send the given command to the redis server or cluster. 
 | 
| Modifier and Type | Method and 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. 
 | 
default 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. 
 | 
default 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. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Request | 
Request.getDelegate()  | 
| Modifier and Type | Method and Description | 
|---|---|
static Request | 
Request.newInstance(Request arg)  | 
| Constructor and Description | 
|---|
Request(Request delegate)  | 
Copyright © 2020 Eclipse. All rights reserved.