| Package | Description | 
|---|---|
| io.vertx.rxjava.redis.client | 
| Modifier and Type | Field and Description | 
|---|---|
static io.vertx.lang.rx.TypeArg<Request> | 
Request.__TYPE_ARG  | 
| 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 
 | 
Request | 
Request.arg(byte arg)
Adds a byte encoded to string 
 | 
Request | 
Request.arg(byte[] arg)
Adds a byte array 
 | 
Request | 
Request.arg(int arg)
Adds a int encoded to string 
 | 
Request | 
Request.arg(long arg)
Adds a long encoded to string 
 | 
Request | 
Request.arg(short arg)
Adds a short encoded to string 
 | 
Request | 
Request.arg(String arg)
Adds a String argument using UTF8 character encoding 
 | 
Request | 
Request.arg(String arg,
   String enc)
Adds a String using a specific character encoding argument 
 | 
static Request | 
Request.cmd(Command command)  | 
static Request | 
Request.newInstance(Request arg)  | 
Request | 
Request.nullArg()
Adds a NULL encoded string 
 | 
| Modifier and Type | Method and Description | 
|---|---|
Single<Response> | 
Redis.rxSend(Request command)
Send the given command to the redis server or cluster. 
 | 
Single<Response> | 
RedisConnection.rxSend(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,
    Handler<AsyncResult<Response>> onSend)
Send the given command to the redis server or cluster. 
 | 
Observable<Response> | 
Redis.sendObservable(Request command)
Deprecated. 
 
 | 
Observable<Response> | 
RedisConnection.sendObservable(Request command)
Deprecated. 
 
 | 
| Modifier and Type | Method and Description | 
|---|---|
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,
     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. 
 | 
Observable<List<Response>> | 
Redis.batchObservable(List<Request> commands)
Deprecated. 
 
 | 
Observable<List<Response>> | 
RedisConnection.batchObservable(List<Request> commands)
Deprecated. 
 
 | 
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. 
 | 
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. 
 | 
Copyright © 2020 Eclipse. All rights reserved.