Package io.vertx.reactivex.redis.client
Class Redis
- java.lang.Object
-
- io.vertx.reactivex.redis.client.Redis
-
public class Redis extends Object
A simple Redis client. NOTE: This class has been automatically generated from theoriginalnon RX-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<Redis>__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Redisbatch(List<Request> commands)Sends a list of commands in a single IO operation, this prevents any inter twinning to happen from other client users.Redisbatch(List<Request> commands, io.vertx.core.Handler<io.vertx.core.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.voidclose()Closes the client and terminates any connection.Redisconnect()Connects to the redis server.Redisconnect(io.vertx.core.Handler<io.vertx.core.AsyncResult<RedisConnection>> handler)Connects to the redis server.static RediscreateClient(Vertx vertx)Create a new redis client using the default client options.static RediscreateClient(Vertx vertx, io.vertx.redis.client.RedisOptions options)Create a new redis client using the given client options.static RediscreateClient(Vertx vertx, String connectionString)Create a new redis client using the default client options.booleanequals(Object o)io.vertx.redis.client.RedisgetDelegate()inthashCode()static RedisnewInstance(io.vertx.redis.client.Redis arg)io.reactivex.Single<List<Response>>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<RedisConnection>rxConnect()Connects to the redis server.io.reactivex.Maybe<Response>rxSend(Request command)Send the given command to the redis server or cluster.Redissend(Request command)Send the given command to the redis server or cluster.Redissend(Request command, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> onSend)Send the given command to the redis server or cluster.StringtoString()
-
-
-
Constructor Detail
-
Redis
public Redis(io.vertx.redis.client.Redis delegate)
-
Redis
public Redis(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.redis.client.Redis getDelegate()
-
createClient
public static Redis createClient(Vertx vertx)
Create a new redis client using the default client options.- Parameters:
vertx- the vertx instance- Returns:
- the client
-
createClient
public static Redis createClient(Vertx vertx, String connectionString)
Create a new redis client using the default client options. Does not support rediss (redis over ssl scheme) for now.- Parameters:
vertx- the vertx instanceconnectionString- a string URI following the scheme: redis://[username:password@][host][:port][/database]- Returns:
- the client
-
createClient
public static Redis createClient(Vertx vertx, io.vertx.redis.client.RedisOptions options)
Create a new redis client using the given client options.- Parameters:
vertx- the vertx instanceoptions- the user provided options- Returns:
- the client
-
connect
public Redis connect(io.vertx.core.Handler<io.vertx.core.AsyncResult<RedisConnection>> handler)
Connects to the redis server.- Parameters:
handler- the async result handler- Returns:
- a reference to this, so the API can be used fluently
-
connect
public Redis connect()
Connects to the redis server.- Returns:
- a reference to this, so the API can be used fluently
-
rxConnect
public io.reactivex.Single<RedisConnection> rxConnect()
Connects to the redis server.- Returns:
- a reference to this, so the API can be used fluently
-
close
public void close()
Closes the client and terminates any connection.
-
send
public Redis send(Request command, io.vertx.core.Handler<io.vertx.core.AsyncResult<Response>> onSend)
Send the given command to the redis server or cluster.- Parameters:
command- the command to sendonSend- the asynchronous result handler.- Returns:
- fluent self.
-
send
public Redis send(Request command)
Send the given command to the redis server or cluster.- Parameters:
command- the command to send- Returns:
- fluent self.
-
rxSend
public io.reactivex.Maybe<Response> rxSend(Request command)
Send the given command to the redis server or cluster.- Parameters:
command- the command to send- Returns:
- fluent self.
-
batch
public Redis batch(List<Request> commands, io.vertx.core.Handler<io.vertx.core.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.- Parameters:
commands- list of command to sendonSend- the asynchronous result handler.- Returns:
- fluent self.
-
batch
public 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.- Parameters:
commands- list of command to send- Returns:
- fluent self.
-
rxBatch
public io.reactivex.Single<List<Response>> 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.- Parameters:
commands- list of command to send- Returns:
- fluent self.
-
newInstance
public static Redis newInstance(io.vertx.redis.client.Redis arg)
-
-