Uses of Class
io.vertx.reactivex.redis.client.Redis
-
Packages that use Redis Package Description io.vertx.reactivex.ext.web.sstore.redis io.vertx.reactivex.redis.client io.vertx.reactivex.servicediscovery.types -
-
Uses of Redis in io.vertx.reactivex.ext.web.sstore.redis
Methods in io.vertx.reactivex.ext.web.sstore.redis with parameters of type Redis Modifier and Type Method Description static RedisSessionStore
RedisSessionStore. create(Vertx vertx, long retryTimeoutMs, Redis redis)
Creates a RedisSessionStore with the given retry TO.static RedisSessionStore
RedisSessionStore. create(Vertx vertx, Redis redis)
Creates a RedisSessionStore with the default retry TO. -
Uses of Redis in io.vertx.reactivex.redis.client
Fields in io.vertx.reactivex.redis.client with type parameters of type Redis Modifier and Type Field Description static TypeArg<Redis>
Redis. __TYPE_ARG
Methods in io.vertx.reactivex.redis.client that return Redis 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.Redis
Redis. connect()
Connects to the redis server.Redis
Redis. connect(Handler<AsyncResult<RedisConnection>> handler)
Connects to the redis server.static Redis
Redis. createClient(Vertx vertx)
Create a new redis client using the default client options.static Redis
Redis. createClient(Vertx vertx, RedisOptions options)
Create a new redis client using the given client options.static Redis
Redis. createClient(Vertx vertx, String connectionString)
Create a new redis client using the default client options.static Redis
Redis. newInstance(Redis arg)
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.Methods in io.vertx.reactivex.redis.client with parameters of type Redis Modifier and Type Method Description static RedisAPI
RedisAPI. api(Redis client)
-
Uses of Redis in io.vertx.reactivex.servicediscovery.types
Methods in io.vertx.reactivex.servicediscovery.types that return types with arguments of type Redis Modifier and Type Method Description static io.reactivex.Single<Redis>
RedisDataSource. rxGetRedisClient(ServiceDiscovery discovery, JsonObject filter)
Convenient method that looks for a Redis data source and provides the configuredRedis
.static io.reactivex.Single<Redis>
RedisDataSource. rxGetRedisClient(ServiceDiscovery discovery, JsonObject filter, JsonObject consumerConfiguration)
Convenient method that looks for a Redis data source and provides the configuredRedis
.static io.reactivex.Single<Redis>
RedisDataSource. rxGetRedisClient(ServiceDiscovery discovery, Function<Record,Boolean> filter)
Convenient method that looks for a Redis data source and provides the configuredRedis
.static io.reactivex.Single<Redis>
RedisDataSource. rxGetRedisClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject consumerConfiguration)
Convenient method that looks for a Redis data source and provides the configuredRedis
.Method parameters in io.vertx.reactivex.servicediscovery.types with type arguments of type Redis Modifier and Type Method Description static void
RedisDataSource. getRedisClient(ServiceDiscovery discovery, JsonObject filter, Handler<AsyncResult<Redis>> resultHandler)
Convenient method that looks for a Redis data source and provides the configuredRedis
.static void
RedisDataSource. getRedisClient(ServiceDiscovery discovery, JsonObject filter, JsonObject consumerConfiguration, Handler<AsyncResult<Redis>> resultHandler)
Convenient method that looks for a Redis data source and provides the configuredRedis
.static void
RedisDataSource. getRedisClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, Handler<AsyncResult<Redis>> resultHandler)
Convenient method that looks for a Redis data source and provides the configuredRedis
.static void
RedisDataSource. getRedisClient(ServiceDiscovery discovery, Function<Record,Boolean> filter, JsonObject consumerConfiguration, Handler<AsyncResult<Redis>> resultHandler)
Convenient method that looks for a Redis data source and provides the configuredRedis
.
-