Uses of Interface
com.tangosol.util.ValueUpdater
Package
Description
Contains classes to enable Repository-like access to Coherence data.
Contains Federation conflict resolution interfaces.
Contains classes providing various caching strategies.
Contains various generic utilities.
Contains
ValueExtractor
and
ValueUpdater
related classes.Contains concrete
InvocableMap.EntryProcessor
implementations.-
Uses of ValueUpdater in com.oracle.coherence.repository
Modifier and TypeMethodDescription<U> CompletableFuture
<Void> AbstractAsyncRepository.update
(ID id, ValueUpdater<? super T, ? super U> updater, U value) Update an entity using specified updater and the new value.<U> CompletableFuture
<Void> AbstractAsyncRepository.update
(ID id, ValueUpdater<? super T, ? super U> updater, U value, EntityFactory<? super ID, ? extends T> factory) Update an entity using specified updater and the new value, and optionalEntityFactory
that will be used to create entity instance if it doesn't already exist in the repository.<U> void
AbstractRepository.update
(ID id, ValueUpdater<? super T, ? super U> updater, U value) Update an entity using specified updater and the new value.<U> void
AbstractRepository.update
(ID id, ValueUpdater<? super T, ? super U> updater, U value, EntityFactory<? super ID, ? extends T> factory) Update an entity using specified updater and the new value, and optionalEntityFactory
that will be used to create entity instance if it doesn't already exist in the repository.<U> CompletableFuture
<Void> AbstractAsyncRepository.updateAll
(Filter<?> filter, ValueUpdater<? super T, ? super U> updater, U value) Update multiple entities using specified updater and the new value.<U> void
AbstractRepository.updateAll
(Filter<?> filter, ValueUpdater<? super T, ? super U> updater, U value) Update multiple entities using specified updater and the new value. -
Uses of ValueUpdater in com.tangosol.coherence.federation
Modifier and TypeMethodDescription<T> void
ChangeRecord.update
(ValueUpdater<V, T> updater, T oValue) Update the modified Entry's value using the givenValueUpdater
. -
Uses of ValueUpdater in com.tangosol.net.cache
Modifier and TypeMethodDescriptionvoid
BackingMapBinaryEntry.update
(ValueUpdater updater, Object oValue) Update the Entry's value. -
Uses of ValueUpdater in com.tangosol.util
Modifier and TypeFieldDescriptionprotected ValueUpdater
UniversalManipulator.m_updater
The underlying ValueUpdater.Modifier and TypeMethodDescriptionUniversalManipulator.getUpdater()
Retrieve the underlying ValueUpdater reference.ValueManipulator.getUpdater()
Retrieve the underlying ValueUpdater reference.Modifier and TypeMethodDescription<T> void
ConverterCollections.ConverterMapEvent.ConverterMapEventBinaryEntry.update
(ValueUpdater<V, T> updater, T value) Update the Entry's value.<T> void
InvocableMap.Entry.update
(ValueUpdater<V, T> updater, T value) Update the Entry's value.void
InvocableMapHelper.RoutingMapTriggerEntry.update
(ValueUpdater updater, Object oValue) static <K,
V, T> InvocableMap.EntryProcessor <K, V, Boolean> Processors.update
(ValueUpdater<V, T> updater, T value) Construct an update processor based on the specifiedValueUpdater
.<U> void
SimpleMapEntry.update
(ValueUpdater<V, U> updater, U value) Update the Entry's value.static <K,
V, U> void InvocableMapHelper.updateEntry
(ValueUpdater<V, U> updater, Map.Entry<K, V> entry, U oValue) Update the specified entry using the specified updater and value. -
Uses of ValueUpdater in com.tangosol.util.extractor
Modifier and TypeClassDescriptionclass
AbstractUpdater<K,
V, U> Abstract base for ValueUpdater implementations.class
A ValueUpdater implementation based on an extractor-updater pair that could also be used as a ValueManipulator.class
POF-based ValueUpdater implementation.class
Reflection-based ValueUpdater implementation.class
Universal ValueUpdater implementation.Modifier and TypeFieldDescriptionprotected ValueUpdater
CompositeUpdater.m_updater
The ValueUpdater part.Modifier and TypeMethodDescriptionstatic ValueUpdater
UniversalUpdater.createUpdater
(String sNames) Return aValueUpdater
forsNames
CompositeUpdater.getUpdater()
Retrieve the ValueUpdater part.ModifierConstructorDescriptionCompositeUpdater
(ValueExtractor extractor, ValueUpdater updater) Construct a CompositeUpdater based on the specified extractor and updater. -
Uses of ValueUpdater in com.tangosol.util.processor
Modifier and TypeFieldDescriptionprotected ValueUpdater
<V, R> PropertyManipulator.m_updater
The underlying ValueUpdater.protected ValueUpdater
<V, T> UpdaterProcessor.m_updater
The underlying ValueUpdater.Modifier and TypeMethodDescriptionPropertyManipulator.getUpdater()
Retrieve the underlying ValueUpdater reference.ModifierConstructorDescriptionUpdaterProcessor
(ValueUpdater<V, T> updater, T value) Construct an UpdaterProcessor based on the specified ValueUpdater.