Uses of Interface
com.tangosol.util.ValueUpdater
-
Packages that use ValueUpdater Package Description com.oracle.coherence.repository Contains classes to enable Repository-like access to Coherence data.com.tangosol.coherence.federation Contains Federation conflict resolution interfaces.com.tangosol.coherence.rest.util Contains packages and classes related to the Coherence REST API utilities.com.tangosol.coherence.rest.util.updater Contains classes related to REST-based updater.com.tangosol.net.cache Contains classes providing various caching strategies.com.tangosol.util Contains various generic utilities.com.tangosol.util.extractor ContainsValueExtractor
andValueUpdater
related classes.com.tangosol.util.processor Contains concreteInvocableMap.EntryProcessor
implementations. -
-
Uses of ValueUpdater in com.oracle.coherence.repository
Methods in com.oracle.coherence.repository with parameters of type ValueUpdater Modifier and Type Method Description <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
Methods in com.tangosol.coherence.federation with parameters of type ValueUpdater Modifier and Type Method Description <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.coherence.rest.util
Fields in com.tangosol.coherence.rest.util declared as ValueUpdater Modifier and Type Field Description protected ValueUpdater
MvelManipulator. m_updater
The underlying ValueUpdater.Methods in com.tangosol.coherence.rest.util that return ValueUpdater Modifier and Type Method Description ValueUpdater
MvelManipulator. getUpdater()
Retrieve the underlying ValueUpdater reference. -
Uses of ValueUpdater in com.tangosol.coherence.rest.util.updater
Classes in com.tangosol.coherence.rest.util.updater that implement ValueUpdater Modifier and Type Class Description class
MvelUpdater
MVEL-based ValueUpdater implementation. -
Uses of ValueUpdater in com.tangosol.net.cache
Methods in com.tangosol.net.cache with parameters of type ValueUpdater Modifier and Type Method Description void
BackingMapBinaryEntry. update(ValueUpdater updater, Object oValue)
Update the Entry's value. -
Uses of ValueUpdater in com.tangosol.util
Methods in com.tangosol.util that return ValueUpdater Modifier and Type Method Description ValueUpdater<T,V>
ValueManipulator. getUpdater()
Retrieve the underlying ValueUpdater reference.Methods in com.tangosol.util with parameters of type ValueUpdater Modifier and Type Method Description <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>
voidInvocableMapHelper. 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
Classes in com.tangosol.util.extractor that implement ValueUpdater Modifier and Type Class Description class
AbstractUpdater<K,V,U>
Abstract base for ValueUpdater implementations.class
CompositeUpdater
A ValueUpdater implementation based on an extractor-updater pair that could also be used as a ValueManipulator.class
PofUpdater
POF-based ValueUpdater implementation.class
ReflectionUpdater
Reflection-based ValueUpdater implementation.class
UniversalUpdater
Universal ValueUpdater implementation.Fields in com.tangosol.util.extractor declared as ValueUpdater Modifier and Type Field Description protected ValueUpdater
CompositeUpdater. m_updater
The ValueUpdater part.Methods in com.tangosol.util.extractor that return ValueUpdater Modifier and Type Method Description static ValueUpdater
UniversalUpdater. createUpdater(String sNames)
Return aValueUpdater
forsNames
ValueUpdater
CompositeUpdater. getUpdater()
Retrieve the ValueUpdater part.Constructors in com.tangosol.util.extractor with parameters of type ValueUpdater Constructor Description CompositeUpdater(ValueExtractor extractor, ValueUpdater updater)
Construct a CompositeUpdater based on the specified extractor and updater. -
Uses of ValueUpdater in com.tangosol.util.processor
Fields in com.tangosol.util.processor declared as ValueUpdater Modifier and Type Field Description protected ValueUpdater<V,R>
PropertyManipulator. m_updater
The underlying ValueUpdater.protected ValueUpdater<V,T>
UpdaterProcessor. m_updater
The underlying ValueUpdater.Methods in com.tangosol.util.processor that return ValueUpdater Modifier and Type Method Description ValueUpdater<V,R>
PropertyManipulator. getUpdater()
Retrieve the underlying ValueUpdater reference.Constructors in com.tangosol.util.processor with parameters of type ValueUpdater Constructor Description UpdaterProcessor(ValueUpdater<V,T> updater, T value)
Construct an UpdaterProcessor based on the specified ValueUpdater.
-