Package org.infinispan.functional
Interface EntryView.WriteEntryView<K,V>
-
- All Known Subinterfaces:
EntryView.ReadWriteEntryView<K,V>
- Enclosing class:
- EntryView
public static interface EntryView.WriteEntryView<K,V>Expose a write-only facade for a cache entry potentially associated with a key in the functional map which allows the cache entry to be written with new value and/or new metadata parameters.- Since:
- 8.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Kkey()Key of the write-only entry view.Voidremove()Removes the value and any metadata parameters associated with it.Voidset(V value, MetaParam.Writable... metas)Set this value along with optional metadata parameters.Voidset(V value, Metadata metadata)Set this value along with metadata object.
-
-
-
Method Detail
-
key
K key()
Key of the write-only entry view. Guaranteed to return a non-null value. The instance of the key must not be mutated.
-
set
Void set(V value, MetaParam.Writable... metas)
Set this value along with optional metadata parameters.This method returns
Voidinstead of 'void' to avoid having to add overloaded methods in functional map that takeConsumerinstead ofFunction. This is an unfortunate side effect of the Java language itself which does not consider 'void' to be anObject.
-
remove
Void remove()
Removes the value and any metadata parameters associated with it.This method returns
Voidinstead of 'void' to avoid having to add overloaded methods in functional map that takeConsumerinstead ofFunction. This is an unfortunate side effect of the Java language itself which does not consider 'void' to be anObject.
-
-