Uses of Interface
com.loomcache.server.datastructures.mapstore.MapStore
Packages that use MapStore
Package
Description
MapStore Service Provider Interface — pluggable backing store for
DistributedMap.-
Uses of MapStore in com.loomcache.server.datastructures
Methods in com.loomcache.server.datastructures that return MapStoreModifier and TypeMethodDescriptionDistributedMap.getMapStore()Get the wiredMapStore, ornullif none has been configured.Methods in com.loomcache.server.datastructures with parameters of type MapStoreModifier and TypeMethodDescriptionvoidDistributedMap.setMapStore(MapStore<K, V> store, MapStoreConfig config) Wire a pluggableMapStoreas the backing store for this map. -
Uses of MapStore in com.loomcache.server.datastructures.mapstore
Subinterfaces of MapStore in com.loomcache.server.datastructures.mapstoreModifier and TypeInterfaceDescriptioninterfaceEntryStore<K,V> Metadata-aware MapStore extension for values that carry per-entry expiry.Classes in com.loomcache.server.datastructures.mapstore that implement MapStoreModifier and TypeClassDescriptionfinal classBuilt-in JDBC-backed MapStore for declarativedata-connection-refusage. -
Uses of MapStore in com.loomcache.server.jcache
Classes in com.loomcache.server.jcache that implement MapStoreModifier and TypeClassDescriptionfinal classMethods in com.loomcache.server.jcache that return MapStoreModifier and TypeMethodDescriptionMapStoreBackedCacheWriter.mapStore()Expose the underlyingMapStorefor diagnostics / advanced callers that need to issue reads or deletes outside theCacheWriterIntegrationwrite path.JCacheDistributedMapAdapter.wrapTypedMapStore(MapStore<K, V> typedStore) Wrap a typedMapStoreso it can be installed on the encoded backing map.Methods in com.loomcache.server.jcache with parameters of type MapStoreModifier and TypeMethodDescriptionstatic <K,V> CacheWriterIntegration <K, V> CacheWriterIntegration.fromMapStore(MapStore<K, V> mapStore, MapStoreConfig config) Bridge factory: wire aMapStorethrough the JCache write-through / write-behind machinery by wrapping it in aMapStoreBackedCacheWriter.JCacheDistributedMapAdapter.wrapTypedMapStore(MapStore<K, V> typedStore) Wrap a typedMapStoreso it can be installed on the encoded backing map.Constructors in com.loomcache.server.jcache with parameters of type MapStoreModifierConstructorDescriptionMapStoreBackedCacheWriter(MapStore<K, V> mapStore) Wrap aMapStoreas aCacheWriterIntegration.BackingStoreWriter.