Interface EntryView.WriteEntryView<K,V> 
- All Known Subinterfaces:
- EntryView.ReadWriteEntryView<K,,- V> - EntryViews.AccessLoggingReadWriteView<K,- V> 
- Enclosing class:
- EntryView
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 SummaryModifier and TypeMethodDescriptionkey()Key of the write-only entry view.remove()Removes the value and any metadata parameters associated with it.set(V value, MetaParam.Writable... metas) Set this value along with optional metadata parameters.Set this value along with metadata object.
- 
Method Details- 
keyK key()Key of the write-only entry view. Guaranteed to return a non-null value. The instance of the key must not be mutated.
- 
setSet 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.
- 
set
- 
removeVoid 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.
 
-