Class InfinispanClientBuildTimeConfig
- java.lang.Object
-
- io.quarkus.infinispan.client.runtime.InfinispanClientBuildTimeConfig
-
public class InfinispanClientBuildTimeConfig extends Object
- Author:
- William Burns
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInfinispanClientBuildTimeConfig.DevServiceConfigurationstatic classInfinispanClientBuildTimeConfig.RemoteCacheConfig
-
Field Summary
Fields Modifier and Type Field Description Map<String,InfinispanClientBuildTimeConfig.RemoteCacheConfig>cacheConfigures caches build time config from the client with the provided configuration.InfinispanClientBuildTimeConfig.DevServiceConfigurationdevServiceConfiguration for DevServices.Optional<String>marshallerClassSets the marshallerClass.intnearCacheMaxEntriesDeprecated.use per cache configuration for near cache max entries
-
Constructor Summary
Constructors Constructor Description InfinispanClientBuildTimeConfig()
-
-
-
Field Detail
-
nearCacheMaxEntries
@ConfigItem @Deprecated public int nearCacheMaxEntries
Deprecated.use per cache configuration for near cache max entriesSets the bounded entry count for near cache. If this value is 0 or less near cache is disabled.
-
marshallerClass
@ConfigItem public Optional<String> marshallerClass
Sets the marshallerClass. Default is ProtoStreamMarshaller
-
cache
@ConfigItem public Map<String,InfinispanClientBuildTimeConfig.RemoteCacheConfig> cache
Configures caches build time config from the client with the provided configuration.
-
devService
@ConfigItem(name="<<parent>>") public InfinispanClientBuildTimeConfig.DevServiceConfiguration devService
Configuration for DevServices. DevServices allows Quarkus to automatically start an Infinispan Server in dev and test mode.
-
-