Interface Mutation<K,V,R>
-
- All Superinterfaces:
InjectableComponent
public interface Mutation<K,V,R> extends InjectableComponent
Simplified version of functional command used for read-only operations after transactional modifications.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
apply(EntryView.ReadWriteEntryView<K,V> view)
Mutate the viewDataConversion
keyDataConversion()
byte
type()
DataConversion
valueDataConversion()
-
Methods inherited from interface org.infinispan.commands.functional.functions.InjectableComponent
inject
-
-
-
-
Method Detail
-
type
byte type()
- Returns:
- Internal identifier used for purposes of marshalling
-
apply
R apply(EntryView.ReadWriteEntryView<K,V> view)
Mutate the view- Parameters:
view
-
-
keyDataConversion
DataConversion keyDataConversion()
-
valueDataConversion
DataConversion valueDataConversion()
-
-