Uses of Class
org.redisson.config.Config
-
Packages that use Config Package Description org.redisson org.redisson.api org.redisson.cluster org.redisson.codec org.redisson.config org.redisson.connection org.redisson.jcache.configuration -
-
Uses of Config in org.redisson
Fields in org.redisson declared as Config Modifier and Type Field Description protected ConfigRedisson. configMethods in org.redisson that return Config Modifier and Type Method Description ConfigRedisson. getConfig()ConfigRedissonReactive. getConfig()ConfigRedissonRx. getConfig()Methods in org.redisson with parameters of type Config Modifier and Type Method Description static RedissonClientRedisson. create(Config config)Create sync/async Redisson instance with provided configstatic RedissonReactiveClientRedisson. createReactive(Config config)Deprecated.static RedissonRxClientRedisson. createRx(Config config)Deprecated.Constructors in org.redisson with parameters of type Config Constructor Description Redisson(Config config)RedissonReactive(Config config)RedissonRx(Config config) -
Uses of Config in org.redisson.api
Methods in org.redisson.api that return Config Modifier and Type Method Description ConfigRedissonClient. getConfig()Allows to get configuration provided during Redisson instance creation.ConfigRedissonReactiveClient. getConfig()Allows to get configuration provided during Redisson instance creation.ConfigRedissonRxClient. getConfig()Allows to get configuration provided during Redisson instance creation. -
Uses of Config in org.redisson.cluster
Constructors in org.redisson.cluster with parameters of type Config Constructor Description ClusterConnectionManager(ClusterServersConfig cfg, Config config, UUID id) -
Uses of Config in org.redisson.codec
Methods in org.redisson.codec with parameters of type Config Modifier and Type Method Description <T extends Codec>
TDefaultReferenceCodecProvider. getCodec(REntity anno, Class<?> cls, Config config)<T extends Codec,K extends RObject>
TDefaultReferenceCodecProvider. getCodec(RObjectField anno, Class<?> cls, Class<K> rObjectClass, String fieldName, Config config)<T extends Codec>
TReferenceCodecProvider. getCodec(REntity anno, Class<?> cls, Config config)Get a codec instance by a REntity annotation and the class annotated with it.<T extends Codec,K extends RObject>
TReferenceCodecProvider. getCodec(RObjectField anno, Class<?> cls, Class<K> rObjectClass, String fieldName, Config config)Get a codec instance by a RObjectField annotation and the class annotated with REntity, the implementation class of RObject the field is going to be transformed into and the name of the field with this RObjectField annotation. -
Uses of Config in org.redisson.config
Subclasses of Config in org.redisson.config Modifier and Type Class Description classRedissonNodeConfigRedisson Node configurationclassRedissonNodeFileConfigRedisson Node file configurationMethods in org.redisson.config that return Config Modifier and Type Method Description static ConfigConfig. fromJSON(File file)Deprecated.static ConfigConfig. fromJSON(File file, ClassLoader classLoader)Deprecated.static ConfigConfig. fromJSON(InputStream inputStream)Deprecated.static ConfigConfig. fromJSON(Reader reader)Deprecated.static ConfigConfig. fromJSON(String content)Deprecated.static ConfigConfig. fromJSON(URL url)Deprecated.static ConfigConfig. fromYAML(File file)Read config object stored in YAML format fromFilestatic ConfigConfig. fromYAML(File file, ClassLoader classLoader)static ConfigConfig. fromYAML(InputStream inputStream)Read config object stored in YAML format fromInputStreamstatic ConfigConfig. fromYAML(Reader reader)Read config object stored in YAML format fromReaderstatic ConfigConfig. fromYAML(String content)Read config object stored in YAML format fromStringstatic ConfigConfig. fromYAML(URL url)Read config object stored in YAML format fromURLConfigConfig. setAddressResolverGroupFactory(AddressResolverGroupFactory addressResolverGroupFactory)Used to switch betweenDnsAddressResolverGroupimplementations.ConfigConfig. setCleanUpKeysAmount(int cleanUpKeysAmount)Defines expired keys amount deleted per single operation during clean up process of expired entries.ConfigConfig. setCodec(Codec codec)Redis data codec.ConfigConfig. setConnectionListener(ConnectionListener connectionListener)Sets connection listener which is triggered when Redisson connected/disconnected to Redis serverConfigConfig. setEventLoopGroup(io.netty.channel.EventLoopGroup eventLoopGroup)Use external EventLoopGroup.ConfigConfig. setExecutor(ExecutorService executor)Use external ExecutorService.ConfigConfig. setKeepPubSubOrder(boolean keepPubSubOrder)Defines whether to keep PubSub messages handling in arrival order or handle messages concurrently.ConfigConfig. setLockWatchdogTimeout(long lockWatchdogTimeout)This parameter is only used if lock has been acquired without leaseTimeout parameter definition.ConfigConfig. setMaxCleanUpDelay(int maxCleanUpDelay)Defines maximum delay in seconds for clean up process of expired entries.ConfigConfig. setMinCleanUpDelay(int minCleanUpDelay)Defines minimum delay in seconds for clean up process of expired entries.ConfigConfig. setNettyHook(NettyHook nettyHook)Netty hook applied to Netty Bootstrap and Channel objects.ConfigConfig. setNettyThreads(int nettyThreads)Threads amount shared between all redis clients used by Redisson.ConfigConfig. setReliableTopicWatchdogTimeout(long timeout)Reliable Topic subscriber expires aftertimeoutif watchdog didn't extend it to nexttimeouttime interval.ConfigConfig. setThreads(int threads)Threads amount shared across all listeners ofRTopicobject, invocation handlers ofRRemoteServiceobject andRExecutorServicetasks.ConfigConfig. setTransportMode(TransportMode transportMode)Transport modeConfigConfig. setUseScriptCache(boolean useScriptCache)Defines whether to use Lua-script cache on Redis side.ConfigConfig. setUseThreadClassLoader(boolean useThreadClassLoader)Defines whether to supply Thread ContextClassLoader to Codec.Methods in org.redisson.config with parameters of type Config Modifier and Type Method Description static ConnectionManagerConfigSupport. createConnectionManager(Config configCopy)StringConfigSupport. toJSON(Config config)StringConfigSupport. toYAML(Config config)Constructors in org.redisson.config with parameters of type Config Constructor Description Config(Config oldConf)RedissonNodeConfig(Config oldConf)RedissonNodeFileConfig(Config oldConf) -
Uses of Config in org.redisson.connection
Methods in org.redisson.connection that return Config Modifier and Type Method Description ConfigConnectionManager. getCfg()ConfigMasterSlaveConnectionManager. getCfg()Constructors in org.redisson.connection with parameters of type Config Constructor Description MasterSlaveConnectionManager(Config cfg, UUID id)MasterSlaveConnectionManager(MasterSlaveServersConfig cfg, Config config, UUID id)ReplicatedConnectionManager(ReplicatedServersConfig cfg, Config config, UUID id)SentinelConnectionManager(SentinelServersConfig cfg, Config config, UUID id)SingleConnectionManager(SingleServerConfig cfg, Config config, UUID id) -
Uses of Config in org.redisson.jcache.configuration
Methods in org.redisson.jcache.configuration that return Config Modifier and Type Method Description ConfigRedissonConfiguration. getConfig()Methods in org.redisson.jcache.configuration with parameters of type Config Modifier and Type Method Description static <K,V>
javax.cache.configuration.Configuration<K,V>RedissonConfiguration. fromConfig(Config config)static <K,V>
javax.cache.configuration.Configuration<K,V>RedissonConfiguration. fromConfig(Config config, javax.cache.configuration.Configuration<K,V> jcacheConfig)
-