Uses of Interface
org.infinispan.metadata.Metadata
-
-
Uses of Metadata in org.infinispan
Methods in org.infinispan with parameters of type Metadata Modifier and Type Method Description VAdvancedCache. compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)An overloaded form of#compute(K, BiFunction), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default VAdvancedCache. compute(K key, SerializableBiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>AdvancedCache. computeAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)Overloaded#computeAsync(K, BiFunction), which stores metadata alongside the value.default CompletableFuture<V>AdvancedCache. computeAsync(K key, SerializableBiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VAdvancedCache. computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)An overloaded form of#computeIfAbsent(K, Function), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default VAdvancedCache. computeIfAbsent(K key, SerializableFunction<? super K,? extends V> mappingFunction, Metadata metadata)CompletableFuture<V>AdvancedCache. computeIfAbsentAsync(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)Overloaded#computeIfAbsentAsync(K, Function), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default CompletableFuture<V>AdvancedCache. computeIfAbsentAsync(K key, SerializableFunction<? super K,? extends V> mappingFunction, Metadata metadata)VAdvancedCache. computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)An overloaded form of#computeIfPresent(K, BiFunction), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default VAdvancedCache. computeIfPresent(K key, SerializableBiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>AdvancedCache. computeIfPresentAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)Overloaded#computeIfPresentAsync(K, BiFunction), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default CompletableFuture<V>AdvancedCache. computeIfPresentAsync(K key, SerializableBiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VAdvancedCache. merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)An overloaded form ofCache.merge(Object, Object, BiFunction), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default VAdvancedCache. merge(K key, V value, SerializableBiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>AdvancedCache. mergeAsync(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)OverloadedAsyncCache.mergeAsync(Object, Object, BiFunction), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default CompletableFuture<V>AdvancedCache. mergeAsync(K key, V value, SerializableBiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)VAdvancedCache. put(K key, V value, Metadata metadata)An overloaded form of#put(K, V), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.voidAdvancedCache. putAll(Map<? extends K,? extends V> map, Metadata metadata)An overloaded form ofMap.putAll(Map), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entries being stored, such as lifespan, version of value...etc.default CompletableFuture<Void>AdvancedCache. putAllAsync(Map<? extends K,? extends V> map, Metadata metadata)CompletableFuture<V>AdvancedCache. putAsync(K key, V value, Metadata metadata)Asynchronous version ofAdvancedCache.put(Object, Object, Metadata)which stores metadata alongside the value.voidAdvancedCache. putForExternalRead(K key, V value, Metadata metadata)An overloaded form of#putForExternalRead(K, V), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.VAdvancedCache. putIfAbsent(K key, V value, Metadata metadata)An overloaded form of#putIfAbsent(K, V), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default CompletableFuture<V>AdvancedCache. putIfAbsentAsync(K key, V value, Metadata metadata)An overloaded form of#putIfAbsentAsync(K, V), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.VAdvancedCache. replace(K key, V value, Metadata metadata)An overloaded form of#replace(K, V), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.booleanAdvancedCache. replace(K key, V oldValue, V newValue, Metadata metadata)An overloaded form of#replace(K, V, V), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default CompletableFuture<V>AdvancedCache. replaceAsync(K key, V value, Metadata metadata)An overloaded form of#replaceAsync(K, V), which takes in an instance ofMetadatawhich can be used to provide metadata information for the entry being stored, such as lifespan, version of value...etc.default CompletableFuture<Boolean>AdvancedCache. replaceAsync(K key, V oldValue, V newValue, Metadata metadata) -
Uses of Metadata in org.infinispan.cache.impl
Fields in org.infinispan.cache.impl declared as Metadata Modifier and Type Field Description protected MetadataCacheImpl. defaultMetadataMethods in org.infinispan.cache.impl that return Metadata Modifier and Type Method Description MetadataSimpleCacheImpl.ValueAndMetadata. getMetadata()MetadataSimpleCacheImpl.CacheEntryChange. getOldMetadata()Methods in org.infinispan.cache.impl with parameters of type Metadata Modifier and Type Method Description VAbstractDelegatingAdvancedCache. compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VCacheImpl. compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VDecoratedCache. compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VEncoderCache. compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VSimpleCacheImpl. compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>AbstractDelegatingAdvancedCache. computeAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>CacheImpl. computeAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>SimpleCacheImpl. computeAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VAbstractDelegatingAdvancedCache. computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)VCacheImpl. computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)VDecoratedCache. computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)VEncoderCache. computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)VSimpleCacheImpl. computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)CompletableFuture<V>AbstractDelegatingAdvancedCache. computeIfAbsentAsync(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)CompletableFuture<V>CacheImpl. computeIfAbsentAsync(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)CompletableFuture<V>SimpleCacheImpl. computeIfAbsentAsync(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)VAbstractDelegatingAdvancedCache. computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VCacheImpl. computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VDecoratedCache. computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VEncoderCache. computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VSimpleCacheImpl. computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>AbstractDelegatingAdvancedCache. computeIfPresentAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>CacheImpl. computeIfPresentAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>SimpleCacheImpl. computeIfPresentAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)protected VSimpleCacheImpl. getAndPutInternal(K key, V value, Metadata metadata)protected VStatsCollectingCache. getAndPutInternal(K key, V value, Metadata metadata)protected VSimpleCacheImpl. getAndReplaceInternal(K key, V value, Metadata metadata)protected VStatsCollectingCache. getAndReplaceInternal(K key, V value, Metadata metadata)VAbstractDelegatingAdvancedCache. merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)VCacheImpl. merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)VDecoratedCache. merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)VEncoderCache. merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)VSimpleCacheImpl. merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>AbstractDelegatingAdvancedCache. mergeAsync(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>CacheImpl. mergeAsync(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>SimpleCacheImpl. mergeAsync(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)protected VSimpleCacheImpl. mergeInternal(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, SimpleCacheImpl.CacheEntryChange<K,V> ref, Metadata metadata)protected VStatsCollectingCache. mergeInternal(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, SimpleCacheImpl.CacheEntryChange<K,V> ref, Metadata metadata)VAbstractDelegatingAdvancedCache. put(K key, V value, Metadata metadata)VCacheImpl. put(K key, V value, Metadata metadata)VDecoratedCache. put(K key, V value, Metadata metadata)VEncoderCache. put(K key, V value, Metadata metadata)VSimpleCacheImpl. put(K key, V value, Metadata metadata)voidAbstractDelegatingAdvancedCache. putAll(Map<? extends K,? extends V> map, Metadata metadata)voidCacheImpl. putAll(Map<? extends K,? extends V> map, Metadata metadata)voidDecoratedCache. putAll(Map<? extends K,? extends V> map, Metadata metadata)voidEncoderCache. putAll(Map<? extends K,? extends V> map, Metadata metadata)voidSimpleCacheImpl. putAll(Map<? extends K,? extends V> map, Metadata metadata)CompletableFuture<Void>AbstractDelegatingAdvancedCache. putAllAsync(Map<? extends K,? extends V> map, Metadata metadata)CompletableFuture<Void>CacheImpl. putAllAsync(Map<? extends K,? extends V> data, Metadata metadata)CompletableFuture<Void>DecoratedCache. putAllAsync(Map<? extends K,? extends V> data, Metadata metadata)CompletableFuture<Void>EncoderCache. putAllAsync(Map<? extends K,? extends V> map, Metadata metadata)CompletableFuture<Void>SimpleCacheImpl. putAllAsync(Map<? extends K,? extends V> map, Metadata metadata)protected voidSimpleCacheImpl. putAllInternal(Map<? extends K,? extends V> map, Metadata metadata)CompletableFuture<V>AbstractDelegatingAdvancedCache. putAsync(K key, V value, Metadata metadata)CompletableFuture<V>CacheImpl. putAsync(K key, V value, Metadata metadata)CompletableFuture<V>DecoratedCache. putAsync(K key, V value, Metadata metadata)CompletableFuture<V>EncoderCache. putAsync(K key, V value, Metadata metadata)CompletableFuture<V>SimpleCacheImpl. putAsync(K key, V value, Metadata metadata)voidAbstractDelegatingAdvancedCache. putForExternalRead(K key, V value, Metadata metadata)protected voidAbstractDelegatingAdvancedCache. putForExternalRead(K key, V value, Metadata metadata, EnumSet<Flag> flags, ClassLoader classLoader)voidCacheImpl. putForExternalRead(K key, V value, Metadata metadata)voidDecoratedCache. putForExternalRead(K key, V value, Metadata metadata)voidEncoderCache. putForExternalRead(K key, V value, Metadata metadata)voidSimpleCacheImpl. putForExternalRead(K key, V value, Metadata metadata)protected voidSimpleCacheImpl. putForExternalReadInternal(K key, V value, Metadata metadata, org.infinispan.commons.util.ByRef.Boolean isCreatedRef)protected voidStatsCollectingCache. putForExternalReadInternal(K key, V value, Metadata metadata, org.infinispan.commons.util.ByRef.Boolean isCreatedRef)VAbstractDelegatingAdvancedCache. putIfAbsent(K key, V value, Metadata metadata)VCacheImpl. putIfAbsent(K key, V value, Metadata metadata)VDecoratedCache. putIfAbsent(K key, V value, Metadata metadata)VEncoderCache. putIfAbsent(K key, V value, Metadata metadata)VSimpleCacheImpl. putIfAbsent(K key, V value, Metadata metadata)CompletableFuture<V>AbstractDelegatingAdvancedCache. putIfAbsentAsync(K key, V value, Metadata metadata)CompletableFuture<V>CacheImpl. putIfAbsentAsync(K key, V value, Metadata metadata)CompletableFuture<V>DecoratedCache. putIfAbsentAsync(K key, V value, Metadata metadata)CompletableFuture<V>EncoderCache. putIfAbsentAsync(K key, V value, Metadata metadata)CompletableFuture<V>SimpleCacheImpl. putIfAbsentAsync(K key, V value, Metadata metadata)protected VSimpleCacheImpl. putIfAbsentInternal(K key, V value, Metadata metadata)protected VStatsCollectingCache. putIfAbsentInternal(K key, V value, Metadata metadata)VAbstractDelegatingAdvancedCache. replace(K key, V value, Metadata metadata)booleanAbstractDelegatingAdvancedCache. replace(K key, V oldValue, V value, Metadata metadata)VCacheImpl. replace(K key, V value, Metadata metadata)booleanCacheImpl. replace(K key, V oldValue, V value, Metadata metadata)VDecoratedCache. replace(K key, V value, Metadata metadata)booleanDecoratedCache. replace(K key, V oldValue, V value, Metadata metadata)VEncoderCache. replace(K key, V value, Metadata metadata)booleanEncoderCache. replace(K key, V oldValue, V value, Metadata metadata)VSimpleCacheImpl. replace(K key, V value, Metadata metadata)booleanSimpleCacheImpl. replace(K key, V oldValue, V value, Metadata metadata)CompletableFuture<V>AbstractDelegatingAdvancedCache. replaceAsync(K key, V value, Metadata metadata)CompletableFuture<Boolean>AbstractDelegatingAdvancedCache. replaceAsync(K key, V oldValue, V newValue, Metadata metadata)CompletableFuture<V>CacheImpl. replaceAsync(K key, V value, Metadata metadata)CompletableFuture<Boolean>CacheImpl. replaceAsync(K key, V oldValue, V newValue, Metadata metadata)CompletableFuture<V>DecoratedCache. replaceAsync(K key, V value, Metadata metadata)CompletableFuture<Boolean>DecoratedCache. replaceAsync(K key, V oldValue, V newValue, Metadata metadata)CompletableFuture<V>EncoderCache. replaceAsync(K key, V value, Metadata metadata)CompletableFuture<Boolean>EncoderCache. replaceAsync(K key, V oldValue, V newValue, Metadata metadata)CompletableFuture<V>SimpleCacheImpl. replaceAsync(K key, V value, Metadata metadata)CompletableFuture<Boolean>SimpleCacheImpl. replaceAsync(K key, V oldValue, V newValue, Metadata metadata)protected booleanSimpleCacheImpl. replaceInternal(K key, V oldValue, V value, Metadata metadata)protected booleanStatsCollectingCache. replaceInternal(K key, V oldValue, V value, Metadata metadata)voidSimpleCacheImpl.CacheEntryChange. set(K key, V newValue, V oldValue, Metadata oldMetadata)voidSimpleCacheImpl.ValueAndMetadata. set(V value, Metadata metadata) -
Uses of Metadata in org.infinispan.commands
Methods in org.infinispan.commands that return Metadata Modifier and Type Method Description MetadataMetadataAwareCommand. getMetadata()Get metadata of this command.Methods in org.infinispan.commands with parameters of type Metadata Modifier and Type Method Description ComputeCommandCommandsFactory. buildComputeCommand(Object key, BiFunction mappingFunction, boolean computeIfPresent, int segment, Metadata metadata, long flagsBitSet)Builds a ComputeCommandComputeCommandCommandsFactoryImpl. buildComputeCommand(Object key, BiFunction mappingFunction, boolean computeIfPresent, int segment, Metadata metadata, long flagsBitSet)ComputeIfAbsentCommandCommandsFactory. buildComputeIfAbsentCommand(Object key, Function mappingFunction, int segment, Metadata metadata, long flagsBitSet)Builds a ComputeIfAbsentCommandComputeIfAbsentCommandCommandsFactoryImpl. buildComputeIfAbsentCommand(Object key, Function mappingFunction, int segment, Metadata metadata, long flagsBitSet)PutKeyValueCommandCommandsFactory. buildPutKeyValueCommand(Object key, Object value, int segment, Metadata metadata, long flagsBitSet)Builds a PutKeyValueCommandPutKeyValueCommandCommandsFactoryImpl. buildPutKeyValueCommand(Object key, Object value, int segment, Metadata metadata, long flagsBitSet)PutMapCommandCommandsFactory. buildPutMapCommand(Map<?,?> map, Metadata metadata, long flagsBitSet)Builds a PutMapCommandPutMapCommandCommandsFactoryImpl. buildPutMapCommand(Map<?,?> map, Metadata metadata, long flagsBitSet)ReplaceCommandCommandsFactory. buildReplaceCommand(Object key, Object oldValue, Object newValue, int segment, Metadata metadata, long flagsBitSet)Builds a ReplaceCommandReplaceCommandCommandsFactoryImpl. buildReplaceCommand(Object key, Object oldValue, Object newValue, int segment, Metadata metadata, long flagsBitSet)voidMetadataAwareCommand. setMetadata(Metadata metadata)Sets metadata for this command. -
Uses of Metadata in org.infinispan.commands.functional
Methods in org.infinispan.commands.functional that return Metadata Modifier and Type Method Description MetadataReadWriteKeyValueCommand. getPrevMetadata()Methods in org.infinispan.commands.functional with parameters of type Metadata Modifier and Type Method Description voidReadWriteKeyValueCommand. setPrevValueAndMetadata(Object prevValue, Metadata prevMetadata) -
Uses of Metadata in org.infinispan.commands.functional.functions
Constructors in org.infinispan.commands.functional.functions with parameters of type Metadata Constructor Description MergeFunction(V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata) -
Uses of Metadata in org.infinispan.commands.irac
Constructors in org.infinispan.commands.irac with parameters of type Metadata Constructor Description IracPutKeyCommand(ByteString cacheName, Object key, Object value, Metadata metadata, IracMetadata iracMetadata) -
Uses of Metadata in org.infinispan.commands.write
Fields in org.infinispan.commands.write declared as Metadata Modifier and Type Field Description protected MetadataRemoveCommand. metadataMethods in org.infinispan.commands.write that return Metadata Modifier and Type Method Description MetadataComputeCommand. getMetadata()MetadataComputeIfAbsentCommand. getMetadata()MetadataPutKeyValueCommand. getMetadata()MetadataPutMapCommand. getMetadata()MetadataRemoveCommand. getMetadata()MetadataReplaceCommand. getMetadata()Methods in org.infinispan.commands.write with parameters of type Metadata Modifier and Type Method Description voidComputeCommand. setMetadata(Metadata metadata)voidComputeIfAbsentCommand. setMetadata(Metadata metadata)voidPutKeyValueCommand. setMetadata(Metadata metadata)voidPutMapCommand. setMetadata(Metadata metadata)voidRemoveCommand. setMetadata(Metadata metadata)voidReplaceCommand. setMetadata(Metadata metadata)Constructors in org.infinispan.commands.write with parameters of type Metadata Constructor Description ComputeCommand(Object key, BiFunction remappingBiFunction, boolean computeIfPresent, int segment, long flagsBitSet, CommandInvocationId commandInvocationId, Metadata metadata)ComputeIfAbsentCommand(Object key, Function mappingFunction, int segment, long flagsBitSet, CommandInvocationId commandInvocationId, Metadata metadata)PutKeyValueCommand(Object key, Object value, boolean putIfAbsent, Metadata metadata, int segment, long flagsBitSet, CommandInvocationId commandInvocationId)PutMapCommand(Map<?,?> map, Metadata metadata, long flagsBitSet, CommandInvocationId commandInvocationId)ReplaceCommand(Object key, Object oldValue, Object newValue, Metadata metadata, int segment, long flagsBitSet, CommandInvocationId commandInvocationId) -
Uses of Metadata in org.infinispan.configuration.cache
Methods in org.infinispan.configuration.cache that return Metadata Modifier and Type Method Description static MetadataConfigurations. newDefaultMetadata(Configuration configuration) -
Uses of Metadata in org.infinispan.container
Methods in org.infinispan.container with parameters of type Metadata Modifier and Type Method Description voidDataContainer. put(K k, V v, Metadata metadata)Puts an entry in the cache along with metadata adding information such lifespan of entry, max idle time, version information...etc. -
Uses of Metadata in org.infinispan.container.entries
Classes in org.infinispan.container.entries that implement Metadata Modifier and Type Class Description classRemoteMetadataThis is a metadata type used by scattered cache during state transfer.Fields in org.infinispan.container.entries declared as Metadata Modifier and Type Field Description protected MetadataReadCommittedEntry. metadataprotected MetadataRepeatableReadEntry. oldMetadataMethods in org.infinispan.container.entries that return Metadata Modifier and Type Method Description MetadataAbstractInternalCacheEntry. getMetadata()MetadataClearCacheEntry. getMetadata()MetadataForwardingCacheEntry. getMetadata()MetadataImmortalCacheEntry. getMetadata()MetadataImmortalCacheValue. getMetadata()MetadataInternalCacheValue. getMetadata()MetadataMortalCacheEntry. getMetadata()MetadataNullCacheEntry. getMetadata()MetadataReadCommittedEntry. getMetadata()MetadataTransientCacheEntry. getMetadata()MetadataTransientMortalCacheEntry. getMetadata()MetadataRepeatableReadEntry. getOldMetadata()Methods in org.infinispan.container.entries with parameters of type Metadata Modifier and Type Method Description longCacheEntrySizeCalculator. calculateSize(K key, V value, Metadata metadata, PrivateMetadata pvtMetadata)voidAbstractInternalCacheEntry. setMetadata(Metadata metadata)voidClearCacheEntry. setMetadata(Metadata metadata)voidForwardingCacheEntry. setMetadata(Metadata metadata)voidImmortalCacheEntry. setMetadata(Metadata metadata)voidMortalCacheEntry. setMetadata(Metadata metadata)voidNullCacheEntry. setMetadata(Metadata metadata)voidReadCommittedEntry. setMetadata(Metadata metadata)voidTransientCacheEntry. setMetadata(Metadata metadata)voidTransientMortalCacheEntry. setMetadata(Metadata metadata)Constructors in org.infinispan.container.entries with parameters of type Metadata Constructor Description ReadCommittedEntry(Object key, Object value, Metadata metadata)RepeatableReadEntry(Object key, Object value, Metadata metadata)VersionedRepeatableReadEntry(Object key, Object value, Metadata metadata) -
Uses of Metadata in org.infinispan.container.entries.metadata
Fields in org.infinispan.container.entries.metadata declared as Metadata Modifier and Type Field Description protected MetadataMetadataImmortalCacheEntry. metadataprotected MetadataMetadataMortalCacheEntry. metadataprotected MetadataMetadataTransientCacheEntry. metadataMethods in org.infinispan.container.entries.metadata that return Metadata Modifier and Type Method Description MetadataMetadataAware. getMetadata()Get metadata of this cache entry.MetadataMetadataImmortalCacheEntry. getMetadata()MetadataMetadataImmortalCacheValue. getMetadata()MetadataMetadataMortalCacheEntry. getMetadata()MetadataMetadataMortalCacheValue. getMetadata()MetadataMetadataTransientCacheEntry. getMetadata()MetadataMetadataTransientCacheValue. getMetadata()MetadataMetadataTransientMortalCacheEntry. getMetadata()Methods in org.infinispan.container.entries.metadata with parameters of type Metadata Modifier and Type Method Description voidMetadataAware. setMetadata(Metadata metadata)Set the metadata in the cache entry.voidMetadataImmortalCacheEntry. setMetadata(Metadata metadata)voidMetadataImmortalCacheValue. setMetadata(Metadata metadata)voidMetadataMortalCacheEntry. setMetadata(Metadata metadata)voidMetadataMortalCacheValue. setMetadata(Metadata metadata)voidMetadataTransientCacheEntry. setMetadata(Metadata metadata)voidMetadataTransientCacheValue. setMetadata(Metadata metadata)voidMetadataTransientMortalCacheEntry. setMetadata(Metadata metadata) -
Uses of Metadata in org.infinispan.container.impl
Methods in org.infinispan.container.impl with parameters of type Metadata Modifier and Type Method Description default longKeyValueMetadataSizeCalculator. calculateSize(K key, V value, Metadata metadata)Method used to calculate how much memory in size the key, value and metadata use.longKeyValueMetadataSizeCalculator. calculateSize(K key, V value, Metadata metadata, PrivateMetadata internalMetadata)Method used to calculate how much memory in size the key, value and metadata use.<K,V>
InternalCacheEntry<K,V>InternalEntryFactory. create(K key, V value, Metadata metadata)Creates a newInternalCacheEntryinstance<K,V>
InternalCacheEntry<K,V>InternalEntryFactory. create(K key, V value, Metadata metadata, long lifespan, long maxIdle)Creates a newInternalCacheEntryinstance<K,V>
InternalCacheEntry<K,V>InternalEntryFactory. create(K key, V value, Metadata metadata, long created, long lifespan, long lastUsed, long maxIdle)Creates a newInternalCacheEntryinstanceInternalCacheEntryInternalEntryFactoryImpl. create(Object key, Object value, Metadata metadata)InternalCacheEntryInternalEntryFactoryImpl. create(Object key, Object value, Metadata metadata, long lifespan, long maxIdle)InternalCacheEntryInternalEntryFactoryImpl. create(Object key, Object value, Metadata metadata, long created, long lifespan, long lastUsed, long maxIdle)<K,V>
InternalCacheEntry<K,V>InternalEntryFactory. createL1(K key, V value, Metadata metadata)Creates a L1 entry.<K,V>
InternalCacheEntryInternalEntryFactoryImpl. createL1(K key, V value, Metadata metadata)static booleanInternalEntryFactoryImpl. isStoreMetadata(Metadata metadata, InternalCacheEntry ice)Indicates whether the entire metadata object needs to be stored or not.voidAbstractDelegatingInternalDataContainer. put(int segment, K k, V v, Metadata metadata, PrivateMetadata internalMetadata, long createdTimestamp, long lastUseTimestamp)voidAbstractDelegatingInternalDataContainer. put(K k, V v, Metadata metadata)voidAbstractInternalDataContainer. put(int segment, K k, V v, Metadata metadata, PrivateMetadata internalMetadata, long createdTimestamp, long lastUseTimestamp)voidAbstractInternalDataContainer. put(K k, V v, Metadata metadata)voidInternalDataContainer. put(int segment, K k, V v, Metadata metadata, PrivateMetadata internalMetadata, long createdTimestamp, long lastUseTimestamp)Same asDataContainer.put(Object, Object, Metadata)except that the segment of the key can provided to write/lookup entries without calculating the segment for the given key.<K,V>
InternalCacheEntry<K,V>InternalEntryFactory. update(InternalCacheEntry<K,V> cacheEntry, Metadata metadata)TODO: Adjust javadoc Updates an existingInternalCacheEntrywith new metadata.<K,V>
InternalCacheEntry<K,V>InternalEntryFactory. update(InternalCacheEntry<K,V> cacheEntry, V value, Metadata metadata)Similar toInternalEntryFactory.update(org.infinispan.container.entries.InternalCacheEntry, org.infinispan.metadata.Metadata)but it also updates theInternalCacheEntryvalue.InternalCacheEntryInternalEntryFactoryImpl. update(InternalCacheEntry cacheEntry, Object value, Metadata metadata)InternalCacheEntryInternalEntryFactoryImpl. update(InternalCacheEntry ice, Metadata metadata) -
Uses of Metadata in org.infinispan.container.offheap
Methods in org.infinispan.container.offheap with parameters of type Metadata Modifier and Type Method Description default longOffHeapEntryFactory. calculateSize(org.infinispan.commons.marshall.WrappedBytes key, org.infinispan.commons.marshall.WrappedBytes value, Metadata metadata)Method used to calculate how much memory in size the key, value and metadata use.longOffHeapEntryFactory. calculateSize(org.infinispan.commons.marshall.WrappedBytes key, org.infinispan.commons.marshall.WrappedBytes value, Metadata metadata, PrivateMetadata internalMetadata)Method used to calculate how much memory in size the key, value, metadata and internal metadata use.longOffHeapEntryFactoryImpl. calculateSize(org.infinispan.commons.marshall.WrappedBytes key, org.infinispan.commons.marshall.WrappedBytes value, Metadata metadata, PrivateMetadata internalMetadata)voidBoundedOffHeapDataContainer. put(int segment, org.infinispan.commons.marshall.WrappedBytes key, org.infinispan.commons.marshall.WrappedBytes value, Metadata metadata, PrivateMetadata internalMetadata, long createdTimestamp, long lastUseTimestamp)voidBoundedOffHeapDataContainer. put(org.infinispan.commons.marshall.WrappedBytes key, org.infinispan.commons.marshall.WrappedBytes value, Metadata metadata)voidSegmentedBoundedOffHeapDataContainer. put(int segment, org.infinispan.commons.marshall.WrappedBytes key, org.infinispan.commons.marshall.WrappedBytes value, Metadata metadata, PrivateMetadata internalMetadata, long createdTimestamp, long lastUseTimestamp)voidSegmentedBoundedOffHeapDataContainer. put(org.infinispan.commons.marshall.WrappedBytes key, org.infinispan.commons.marshall.WrappedBytes value, Metadata metadata) -
Uses of Metadata in org.infinispan.expiration.impl
Methods in org.infinispan.expiration.impl with parameters of type Metadata Modifier and Type Method Description voidInternalExpirationManager.ExpirationConsumer. expired(T key, U value, Metadata metadata, PrivateMetadata privateMetadata)Invoked when an entry is expired. -
Uses of Metadata in org.infinispan.filter
Methods in org.infinispan.filter with parameters of type Metadata Modifier and Type Method Description booleanAbstractKeyValueFilterConverter. accept(K key, V value, Metadata metadata)booleanAcceptAllKeyValueFilter. accept(Object key, Object value, Metadata metadata)booleanCompositeKeyValueFilter. accept(K key, V value, Metadata metadata)booleanKeyValueFilter. accept(K key, V value, Metadata metadata)CAbstractKeyValueFilterConverter. convert(K key, V value, Metadata metadata)CConverter. convert(K key, V value, Metadata metadata)CKeyValueFilterConverter. filterAndConvert(K key, V value, Metadata metadata)Will both filter the entry and if passed subsequently convert the value to a new value. -
Uses of Metadata in org.infinispan.functional
Methods in org.infinispan.functional with parameters of type Metadata Modifier and Type Method Description VoidEntryView.WriteEntryView. set(V value, Metadata metadata)Set this value along with metadata object. -
Uses of Metadata in org.infinispan.functional.impl
Classes in org.infinispan.functional.impl that implement Metadata Modifier and Type Class Description classMetaParamsInternalMetadataMetadata parameters backed internal metadata representation.Methods in org.infinispan.functional.impl that return Metadata Modifier and Type Method Description static MetadataMetaParamsInternalMetadata. from(MetaParams params)Methods in org.infinispan.functional.impl with parameters of type Metadata Modifier and Type Method Description MetaParamsInternalMetadata.BuilderMetaParamsInternalMetadata.Builder. merge(Metadata metadata)voidFunctionalNotifier. notifyOnModify(CacheEntry<K,V> entry, V previousValue, Metadata previousMetadata)Notify registeredListeners.ReadWriteListeners.ReadWriteListenerinstances of the modified entry passing the previous and new value.voidFunctionalNotifierImpl. notifyOnModify(CacheEntry<K,V> entry, V previousValue, Metadata previousMetadata)static <K,V>
EntryView.ReadEntryView<K,V>EntryViews. readOnly(K key, V value, Metadata metadata)static <K,V>
EntryViews.AccessLoggingReadWriteView<K,V>EntryViews. readWrite(MVCCEntry entry, Object prevValue, Metadata prevMetadata, DataConversion keyDataConversion, DataConversion valueDataConversion) -
Uses of Metadata in org.infinispan.globalstate
Methods in org.infinispan.globalstate with parameters of type Metadata Modifier and Type Method Description booleanScopeFilter. accept(ScopedState key, Object oldValue, Metadata oldMetadata, Object newValue, Metadata newMetadata, EventType eventType) -
Uses of Metadata in org.infinispan.interceptors.impl
Methods in org.infinispan.interceptors.impl with parameters of type Metadata Modifier and Type Method Description voidTransactionalExceptionEvictionInterceptor. expired(Object key, Object value, Metadata metadata, PrivateMetadata privateMetadata) -
Uses of Metadata in org.infinispan.marshall.persistence.impl
Methods in org.infinispan.marshall.persistence.impl that return Metadata Modifier and Type Method Description MetadataMarshallableEntryImpl. getMetadata()Methods in org.infinispan.marshall.persistence.impl with parameters of type Metadata Modifier and Type Method Description MarshallableEntryMarshalledEntryFactoryImpl. create(Object key, Object value, Metadata metadata, PrivateMetadata internalMetadata, long created, long lastUsed)static longMarshallableEntryImpl. expiryTime(Metadata metadata, long created, long lastUsed)static booleanMarshallableEntryImpl. isExpired(Metadata metadata, long now, long created, long lastUsed) -
Uses of Metadata in org.infinispan.metadata
Subinterfaces of Metadata in org.infinispan.metadata Modifier and Type Interface Description interfaceInternalMetadataDeprecated.since 10.0Classes in org.infinispan.metadata that implement Metadata Modifier and Type Class Description classEmbeddedMetadataMetadata class for embedded caches.static classEmbeddedMetadata.EmbeddedExpirableMetadatastatic classEmbeddedMetadata.EmbeddedLifespanExpirableMetadatastatic classEmbeddedMetadata.EmbeddedMaxIdleExpirableMetadataMethods in org.infinispan.metadata that return Metadata Modifier and Type Method Description static MetadataMetadatas. applyVersion(Metadata source, Metadata target)Applies version in source metadata to target metadata, if no version in target metadata.MetadataEmbeddedMetadata.Builder. build()MetadataMetadata.Builder. build()Build a metadata instance.Methods in org.infinispan.metadata with parameters of type Metadata Modifier and Type Method Description static MetadataMetadatas. applyVersion(Metadata source, Metadata target)Applies version in source metadata to target metadata, if no version in target metadata.Metadata.BuilderEmbeddedMetadata.Builder. merge(Metadata metadata)Metadata.BuilderMetadata.Builder. merge(Metadata metadata)Merges the given metadata information into the given builder.static voidMetadatas. updateMetadata(CacheEntry entry, Metadata providedMetadata)Set theprovidedMetadataon the cache entry. -
Uses of Metadata in org.infinispan.metadata.impl
Classes in org.infinispan.metadata.impl that implement Metadata Modifier and Type Class Description classInternalMetadataImplDeprecated.classL1MetadataMetadataimplementation that must be passed to theDataContainer.put(Object, Object, org.infinispan.metadata.Metadata)when the entry to store is a L1 entry.Methods in org.infinispan.metadata.impl that return Metadata Modifier and Type Method Description MetadataInternalMetadataImpl. actual()Deprecated.static MetadataInternalMetadataImpl. extractMetadata(Metadata metadata)Deprecated.MetadataL1Metadata. metadata()Methods in org.infinispan.metadata.impl with parameters of type Metadata Modifier and Type Method Description static MetadataInternalMetadataImpl. extractMetadata(Metadata metadata)Deprecated.Constructors in org.infinispan.metadata.impl with parameters of type Metadata Constructor Description InternalMetadataImpl(Metadata actual, long created, long lastUsed)Deprecated.L1Metadata(Metadata metadata) -
Uses of Metadata in org.infinispan.notifications.cachelistener
Methods in org.infinispan.notifications.cachelistener with parameters of type Metadata Modifier and Type Method Description static CompletionStage<Void>NotifyHelper. entryCommitted(CacheNotifier notifier, FunctionalNotifier functionalNotifier, boolean created, boolean removed, boolean expired, CacheEntry entry, InvocationContext ctx, FlagAffectedCommand command, Object previousValue, Metadata previousMetadata, EvictionManager evictionManager)CompletionStage<Void>CacheNotifier. notifyCacheEntryCreated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryCreatedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryCreated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryExpired(K key, V value, Metadata metadata, InvocationContext ctx)Notifies all registered listeners of a CacheEntryExpired event.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryExpired(K key, V value, Metadata metadata, InvocationContext ctx)CompletionStage<Void>CacheNotifier. notifyCacheEntryInvalidated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryInvalidatedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryInvalidated(K key, V value, Metadata metadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryModified(K key, V value, Metadata metadata, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryModifiedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryModified(K key, V value, Metadata metadata, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)CompletionStage<Void>CacheNotifier. notifyCacheEntryRemoved(K key, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command)Notifies all registered listeners of aCacheEntryRemovedEventevent.CompletionStage<Void>CacheNotifierImpl. notifyCacheEntryRemoved(K key, V previousValue, Metadata previousMetadata, boolean pre, InvocationContext ctx, FlagAffectedCommand command) -
Uses of Metadata in org.infinispan.notifications.cachelistener.cluster
Methods in org.infinispan.notifications.cachelistener.cluster that return Metadata Modifier and Type Method Description MetadataClusterEvent. getMetadata() -
Uses of Metadata in org.infinispan.notifications.cachelistener.event
Methods in org.infinispan.notifications.cachelistener.event that return Metadata Modifier and Type Method Description MetadataCacheEntryEvent. getMetadata()Retrieves the metadata associated with the entry. -
Uses of Metadata in org.infinispan.notifications.cachelistener.event.impl
Methods in org.infinispan.notifications.cachelistener.event.impl that return Metadata Modifier and Type Method Description MetadataEventImpl. getMetadata()MetadataEventImpl. getOldMetadata()Methods in org.infinispan.notifications.cachelistener.event.impl with parameters of type Metadata Modifier and Type Method Description voidEventImpl. setMetadata(Metadata metadata)voidEventImpl. setOldMetadata(Metadata metadata) -
Uses of Metadata in org.infinispan.notifications.cachelistener.filter
Methods in org.infinispan.notifications.cachelistener.filter with parameters of type Metadata Modifier and Type Method Description booleanAbstractCacheEventFilterConverter. accept(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)booleanCacheEventFilter. accept(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)Whether or not this event should be raised to the listener it is attached to.booleanCacheEventFilterAsKeyValueFilter. accept(K key, V value, Metadata metadata)booleanCompositeCacheEventFilter. accept(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)booleanKeyValueFilterAsCacheEventFilter. accept(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)booleanKeyValueFilterConverterAsCacheEventFilterConverter. accept(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)booleanPostCacheEventFilter. accept(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)CAbstractCacheEventFilterConverter. convert(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)CCacheEventConverter. convert(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)Converts the given newValue into something different possibly.CCacheEventConverterAsConverter. convert(K key, V value, Metadata metadata)CKeyValueFilterConverterAsCacheEventFilterConverter. convert(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)CCacheEventFilterConverter. filterAndConvert(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType)Will both filter the entry and if passed subsequently convert the value to a new value.CCacheEventFilterConverterAsKeyValueFilterConverter. filterAndConvert(K key, V value, Metadata metadata)CKeyValueFilterConverterAsCacheEventFilterConverter. filterAndConvert(K key, V oldValue, Metadata oldMetadata, V newValue, Metadata newMetadata, EventType eventType) -
Uses of Metadata in org.infinispan.persistence.spi
Methods in org.infinispan.persistence.spi that return Metadata Modifier and Type Method Description MetadataMarshallableEntry. getMetadata()Methods in org.infinispan.persistence.spi with parameters of type Metadata Modifier and Type Method Description MarshallableEntry<K,V>MarshallableEntryFactory. create(Object key, Object value, Metadata metadata, PrivateMetadata internalMetadata, long created, long lastUsed)Creates aMarshallableEntryusing non-marshalled POJOs as arguments -
Uses of Metadata in org.infinispan.security.impl
Methods in org.infinispan.security.impl with parameters of type Metadata Modifier and Type Method Description VSecureCacheImpl. compute(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>SecureCacheImpl. computeAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VSecureCacheImpl. computeIfAbsent(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)CompletableFuture<V>SecureCacheImpl. computeIfAbsentAsync(K key, Function<? super K,? extends V> mappingFunction, Metadata metadata)VSecureCacheImpl. computeIfPresent(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>SecureCacheImpl. computeIfPresentAsync(K key, BiFunction<? super K,? super V,? extends V> remappingFunction, Metadata metadata)VSecureCacheImpl. merge(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)CompletableFuture<V>SecureCacheImpl. mergeAsync(K key, V value, BiFunction<? super V,? super V,? extends V> remappingFunction, Metadata metadata)VSecureCacheImpl. put(K key, V value, Metadata metadata)voidSecureCacheImpl. putAll(Map<? extends K,? extends V> m, Metadata metadata)CompletableFuture<Void>SecureCacheImpl. putAllAsync(Map<? extends K,? extends V> map, Metadata metadata)CompletableFuture<V>SecureCacheImpl. putAsync(K key, V value, Metadata metadata)voidSecureCacheImpl. putForExternalRead(K key, V value, Metadata metadata)VSecureCacheImpl. putIfAbsent(K key, V value, Metadata metadata)CompletableFuture<V>SecureCacheImpl. putIfAbsentAsync(K key, V value, Metadata metadata)VSecureCacheImpl. replace(K key, V value, Metadata metadata)booleanSecureCacheImpl. replace(K key, V oldValue, V newValue, Metadata metadata)CompletableFuture<V>SecureCacheImpl. replaceAsync(K key, V value, Metadata metadata)CompletableFuture<Boolean>SecureCacheImpl. replaceAsync(K key, V oldValue, V newValue, Metadata metadata) -
Uses of Metadata in org.infinispan.xsite
Methods in org.infinispan.xsite with parameters of type Metadata Modifier and Type Method Description CompletionStage<Void>BackupReceiver. putKeyValue(Object key, Object value, Metadata metadata, IracMetadata iracMetadata)Updates the key with the value from a remote site.CompletionStage<Void>ClusteredCacheBackupReceiver. putKeyValue(Object key, Object value, Metadata metadata, IracMetadata iracMetadata) -
Uses of Metadata in org.infinispan.xsite.statetransfer
Methods in org.infinispan.xsite.statetransfer that return Metadata Modifier and Type Method Description MetadataXSiteState. metadata()
-