Uses of Interface
org.infinispan.marshall.core.MarshalledEntry
-
Packages that use MarshalledEntry Package Description org.infinispan.marshall.core org.infinispan.persistence.spi The Persistence SPI.org.infinispan.persistence.support org.infinispan.persistence.util -
-
Uses of MarshalledEntry in org.infinispan.marshall.core
Methods in org.infinispan.marshall.core that return MarshalledEntry Modifier and Type Method Description MarshalledEntry<K,V>MarshalledEntryFactory. newMarshalledEntry(java.lang.Object key, java.lang.Object value, InternalMetadata im)Deprecated.MarshalledEntry<K,V>MarshalledEntryFactory. newMarshalledEntry(java.lang.Object key, ByteBuffer valueBytes, ByteBuffer metadataBytes)Deprecated.MarshalledEntry<K,V>MarshalledEntryFactory. newMarshalledEntry(ByteBuffer key, ByteBuffer valueBytes, ByteBuffer metadataBytes)Deprecated. -
Uses of MarshalledEntry in org.infinispan.persistence.spi
Methods in org.infinispan.persistence.spi that return MarshalledEntry Modifier and Type Method Description default MarshalledEntry<K,V>MarshallableEntry. asMarshalledEntry()Deprecated.This should not be used by users and will be removed in subsequent versions along withMarshalledEntry.default MarshalledEntry<K,V>CacheLoader. load(java.lang.Object key)Deprecated.since 10.0 please implement {CacheLoader.loadEntry(Object)} insteaddefault MarshalledEntry<K,V>SegmentedAdvancedLoadWriteStore. load(int segment, java.lang.Object key)Deprecated.since 10.0, please useSegmentedAdvancedLoadWriteStore.get(int, Object)insteadMethods in org.infinispan.persistence.spi that return types with arguments of type MarshalledEntry Modifier and Type Method Description default org.reactivestreams.Publisher<MarshalledEntry<K,V>>AdvancedCacheLoader. publishEntries(java.util.function.Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata)Deprecated.since 10.0, please usAdvancedCacheLoader.entryPublisher(Predicate, boolean, boolean)instead.default org.reactivestreams.Publisher<MarshalledEntry<K,V>>SegmentedAdvancedLoadWriteStore. publishEntries(IntSet segments, java.util.function.Predicate<? super K> filter, boolean fetchValue, boolean fetchMetadata)Deprecated.since 10.0, please usAdvancedCacheLoader.entryPublisher(Predicate, boolean, boolean)instead.Methods in org.infinispan.persistence.spi with parameters of type MarshalledEntry Modifier and Type Method Description default voidAdvancedCacheExpirationWriter.ExpirationPurgeListener. marshalledEntryPurged(MarshalledEntry<K,V> entry)Deprecated.since 10.0, use {AdvancedCacheExpirationWriter.ExpirationPurgeListener.marshalledEntryPurged(MarshallableEntry)} instead.voidAdvancedCacheLoader.CacheLoaderTask. processEntry(MarshalledEntry<K,V> marshalledEntry, AdvancedCacheLoader.TaskContext taskContext)Deprecated.default voidCacheWriter. write(MarshalledEntry<? extends K,? extends V> entry)Deprecated.since 10.0, useCacheWriter.write(MarshallableEntry)instead.default voidSegmentedAdvancedLoadWriteStore. write(int segment, MarshalledEntry<? extends K,? extends V> entry)Deprecated.since 10.0, useSegmentedAdvancedLoadWriteStore.write(int, MarshallableEntry)instead.Method parameters in org.infinispan.persistence.spi with type arguments of type MarshalledEntry Modifier and Type Method Description default voidCacheWriter. writeBatch(java.lang.Iterable<MarshalledEntry<? extends K,? extends V>> entries)Deprecated.since 10.0, useCacheWriter.bulkUpdate(Publisher)instead. -
Uses of MarshalledEntry in org.infinispan.persistence.support
Methods in org.infinispan.persistence.support that return types with arguments of type MarshalledEntry Modifier and Type Method Description java.util.Collection<MarshalledEntry>BatchModification. getMarshalledEntries()Deprecated.since 10.0, useBatchModification.getMarshallableEntries()instead -
Uses of MarshalledEntry in org.infinispan.persistence.util
Methods in org.infinispan.persistence.util that return MarshalledEntry Modifier and Type Method Description MarshalledEntry<K,V>PersistenceManagerCloseableSupplier. get()Deprecated.
-