Uses of Class
org.infinispan.commands.write.ValueMatcher
-
Packages that use ValueMatcher Package Description org.infinispan.commands.functional org.infinispan.commands.write Commands that alter the state of the cache. -
-
Uses of ValueMatcher in org.infinispan.commands.functional
Methods in org.infinispan.commands.functional that return ValueMatcher Modifier and Type Method Description ValueMatcher
AbstractWriteKeyCommand. getValueMatcher()
ValueMatcher
AbstractWriteManyCommand. getValueMatcher()
Methods in org.infinispan.commands.functional with parameters of type ValueMatcher Modifier and Type Method Description void
AbstractWriteKeyCommand. setValueMatcher(ValueMatcher valueMatcher)
void
AbstractWriteManyCommand. setValueMatcher(ValueMatcher valueMatcher)
Constructors in org.infinispan.commands.functional with parameters of type ValueMatcher Constructor Description AbstractWriteKeyCommand(Object key, ValueMatcher valueMatcher, int segment, CommandInvocationId id, org.infinispan.functional.impl.Params params, DataConversion keyDataConversion, DataConversion valueDataConversion)
ReadWriteKeyCommand(Object key, Function<EntryView.ReadWriteEntryView<K,V>,R> f, int segment, CommandInvocationId id, ValueMatcher valueMatcher, org.infinispan.functional.impl.Params params, DataConversion keyDataConversion, DataConversion valueDataConversion, ComponentRegistry componentRegistry)
ReadWriteKeyValueCommand(Object key, Object argument, BiFunction<T,EntryView.ReadWriteEntryView<K,V>,R> f, int segment, CommandInvocationId id, ValueMatcher valueMatcher, org.infinispan.functional.impl.Params params, DataConversion keyDataConversion, DataConversion valueDataConversion, ComponentRegistry componentRegistry)
WriteOnlyKeyCommand(Object key, Consumer<EntryView.WriteEntryView<K,V>> f, int segment, CommandInvocationId id, ValueMatcher valueMatcher, org.infinispan.functional.impl.Params params, DataConversion keyDataConversion, DataConversion valueDataConversion, ComponentRegistry componentRegistry)
WriteOnlyKeyValueCommand(Object key, Object argument, BiConsumer<T,EntryView.WriteEntryView<K,V>> f, int segment, CommandInvocationId id, ValueMatcher valueMatcher, org.infinispan.functional.impl.Params params, DataConversion keyDataConversion, DataConversion valueDataConversion, ComponentRegistry componentRegistry)
-
Uses of ValueMatcher in org.infinispan.commands.write
Fields in org.infinispan.commands.write declared as ValueMatcher Modifier and Type Field Description protected ValueMatcher
RemoveCommand. valueMatcher
Methods in org.infinispan.commands.write that return ValueMatcher Modifier and Type Method Description ValueMatcher
ApplyDeltaCommand. getValueMatcher()
Deprecated.ValueMatcher
ClearCommand. getValueMatcher()
ValueMatcher
ComputeCommand. getValueMatcher()
ValueMatcher
ComputeIfAbsentCommand. getValueMatcher()
ValueMatcher
InvalidateCommand. getValueMatcher()
ValueMatcher
PutKeyValueCommand. getValueMatcher()
ValueMatcher
PutMapCommand. getValueMatcher()
ValueMatcher
RemoveCommand. getValueMatcher()
ValueMatcher
ReplaceCommand. getValueMatcher()
ValueMatcher
WriteCommand. getValueMatcher()
abstract ValueMatcher
ValueMatcher. matcherForRetry()
static ValueMatcher
ValueMatcher. valueOf(int ordinal)
Returns the enum constant of this type with the specified name.static ValueMatcher
ValueMatcher. valueOf(String name)
Returns the enum constant of this type with the specified name.static ValueMatcher[]
ValueMatcher. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.infinispan.commands.write with parameters of type ValueMatcher Modifier and Type Method Description void
ApplyDeltaCommand. setValueMatcher(ValueMatcher valueMatcher)
Deprecated.void
ClearCommand. setValueMatcher(ValueMatcher valueMatcher)
void
ComputeCommand. setValueMatcher(ValueMatcher valueMatcher)
void
ComputeIfAbsentCommand. setValueMatcher(ValueMatcher valueMatcher)
void
InvalidateCommand. setValueMatcher(ValueMatcher valueMatcher)
void
PutKeyValueCommand. setValueMatcher(ValueMatcher valueMatcher)
void
PutMapCommand. setValueMatcher(ValueMatcher valueMatcher)
void
RemoveCommand. setValueMatcher(ValueMatcher valueMatcher)
void
ReplaceCommand. setValueMatcher(ValueMatcher valueMatcher)
void
WriteCommand. setValueMatcher(ValueMatcher valueMatcher)
-