Package io.quarkus.redis.client
Interface RedisOptionsCustomizer
-
public interface RedisOptionsCustomizerBeans exposing theRedisClientOptionsCustomizerinterface has the possibility to extend/modify theRedisOptionsbefore they are used to create theRedisClientorRedisDataSource.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcustomize(String clientName, io.vertx.redis.client.RedisOptions options)Allows customizing the options for the client namedclientName.
-
-
-
Method Detail
-
customize
void customize(String clientName, io.vertx.redis.client.RedisOptions options)
Allows customizing the options for the client namedclientName. The passedoptionsmust be modified in-place.- Parameters:
clientName- the client name,RedisConfig.DEFAULT_CLIENT_NAMEfor the default client.options- the options.
-
-