Uses of Class
org.apache.ignite.cache.ReadRepairStrategy
-
Packages that use ReadRepairStrategy Package Description org.apache.ignite Contains entry-point Ignite & HPC APIs.org.apache.ignite.cache Contains main Data Grid APIs.org.apache.ignite.events Contains Event Subscription functionality together with various events emitted by Ignite. -
-
Uses of ReadRepairStrategy in org.apache.ignite
Methods in org.apache.ignite with parameters of type ReadRepairStrategy Modifier and Type Method Description IgniteCache<K,V>
IgniteCache. withReadRepair(ReadRepairStrategy strategy)
This is an experimental API. -
Uses of ReadRepairStrategy in org.apache.ignite.cache
Methods in org.apache.ignite.cache that return ReadRepairStrategy Modifier and Type Method Description static ReadRepairStrategy
ReadRepairStrategy. fromString(String name)
Provides strategy by name.static ReadRepairStrategy
ReadRepairStrategy. valueOf(String name)
Returns the enum constant of this type with the specified name.static ReadRepairStrategy[]
ReadRepairStrategy. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of ReadRepairStrategy in org.apache.ignite.events
Methods in org.apache.ignite.events that return ReadRepairStrategy Modifier and Type Method Description ReadRepairStrategy
CacheConsistencyViolationEvent. getStrategy()
Returns strategy.Constructors in org.apache.ignite.events with parameters of type ReadRepairStrategy Constructor Description CacheConsistencyViolationEvent(String cacheName, ClusterNode node, String msg, Map<Object,CacheConsistencyViolationEvent.EntriesInfo> entries, Map<Object,Object> repaired, ReadRepairStrategy strategy)
Creates a new instance of CacheConsistencyViolationEvent.
-