Uses of Class
io.lettuce.core.ClientOptions
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api |
Standalone Redis connection API.
|
| io.lettuce.core.cluster |
Client for Redis Cluster, see
RedisClusterClient. |
| io.lettuce.core.protocol |
Redis protocol layer abstraction.
|
| io.lettuce.core.pubsub |
Pub/Sub connection classes.
|
-
Uses of ClientOptions in io.lettuce.core
Methods in io.lettuce.core that return ClientOptions Modifier and Type Method Description ClientOptionsClientOptions.Builder. build()Create a new instance ofClientOptions.ClientOptionsConnectionBuilder. clientOptions()static ClientOptionsClientOptions. copyOf(ClientOptions options)Create a copy of optionsstatic ClientOptionsClientOptions. create()Create a new instance ofClientOptionswith default settings.ClientOptionsAbstractRedisClient. getOptions()Returns theClientOptionswhich are valid for that client.ClientOptionsRedisChannelHandler. getOptions()Methods in io.lettuce.core with parameters of type ClientOptions Modifier and Type Method Description ConnectionBuilderConnectionBuilder. clientOptions(ClientOptions clientOptions)static ClientOptionsClientOptions. copyOf(ClientOptions options)Create a copy of optionsprotected voidAbstractRedisClient. setOptions(ClientOptions clientOptions)Set theClientOptionsfor the client.voidRedisChannelHandler. setOptions(ClientOptions clientOptions)voidRedisClient. setOptions(ClientOptions clientOptions)Set theClientOptionsfor the client.Constructors in io.lettuce.core with parameters of type ClientOptions Constructor Description ClientOptions(ClientOptions original) -
Uses of ClientOptions in io.lettuce.core.api
Methods in io.lettuce.core.api that return ClientOptions Modifier and Type Method Description ClientOptionsStatefulConnection. getOptions() -
Uses of ClientOptions in io.lettuce.core.cluster
Subclasses of ClientOptions in io.lettuce.core.cluster Modifier and Type Class Description classClusterClientOptionsClient Options to control the behavior ofRedisClusterClient.Methods in io.lettuce.core.cluster with parameters of type ClientOptions Modifier and Type Method Description static ClusterClientOptions.BuilderClusterClientOptions. builder(ClientOptions clientOptions)Returns a newClusterClientOptions.Builderinitialized fromClientOptionsto constructClusterClientOptions.Constructors in io.lettuce.core.cluster with parameters of type ClientOptions Constructor Description PubSubClusterEndpoint(ClientOptions clientOptions, ClientResources clientResources)Initialize a new instance that handles commands from the supplied queue. -
Uses of ClientOptions in io.lettuce.core.protocol
Methods in io.lettuce.core.protocol with parameters of type ClientOptions Modifier and Type Method Description static booleanCommandExpiryWriter. isSupported(ClientOptions clientOptions)Check whetherClientOptionsis configured to timeout commands.Constructors in io.lettuce.core.protocol with parameters of type ClientOptions Constructor Description CommandExpiryWriter(RedisChannelWriter writer, ClientOptions clientOptions, ClientResources clientResources)Create a newCommandExpiryWriter.CommandHandler(ClientOptions clientOptions, ClientResources clientResources, Endpoint endpoint)Initialize a new instance that handles commands from the supplied queue.ConnectionWatchdog(Delay reconnectDelay, ClientOptions clientOptions, Bootstrap bootstrap, Timer timer, EventExecutorGroup reconnectWorkers, Mono<SocketAddress> socketAddressSupplier, ReconnectionListener reconnectionListener, ConnectionFacade connectionFacade, EventBus eventBus, Endpoint endpoint)Create a new watchdog that adds to new connections to the suppliedChannelGroupand establishes a newChannelwhen disconnected, while reconnect is true.DefaultEndpoint(ClientOptions clientOptions, ClientResources clientResources)Create a newDefaultEndpoint. -
Uses of ClientOptions in io.lettuce.core.pubsub
Constructors in io.lettuce.core.pubsub with parameters of type ClientOptions Constructor Description PubSubCommandHandler(ClientOptions clientOptions, ClientResources clientResources, RedisCodec<K,V> codec, PubSubEndpoint<K,V> endpoint)Initialize a new instance.PubSubEndpoint(ClientOptions clientOptions, ClientResources clientResources)Initialize a new instance that handles commands from the supplied queue.