Uses of Class
io.permazen.kv.mvcc.Writes
Packages that use Writes
Package
Description
Caching
KVStore
and KVDatabase
layers.Utility classes for MVCC type operations using a
KVStore
.-
Uses of Writes in io.permazen.kv.caching
Methods in io.permazen.kv.caching with parameters of type WritesModifier and TypeMethodDescriptionprotected void
CachingKVTransaction.applyWritesBeforeCommitIfNotReadOnly
(Writes writes) Apply accumulated mutations just prior tocommit()
'ing the transaction. -
Uses of Writes in io.permazen.kv.mvcc
Methods in io.permazen.kv.mvcc that return WritesModifier and TypeMethodDescriptionWrites.clone()
Clone this instance.static Writes
Writes.deserialize
(InputStream input) Deserialize a mutable instance created byserialize()
.static Writes
Writes.deserialize
(InputStream input, boolean immutable) Deserialize an instance created byserialize()
.DeltaKVStore.getWrites()
Get theWrites
associated with this instance.MutableView.getWrites()
Writes.readOnlySnapshot()
Return an immutable snapshot of this instance.Constructors in io.permazen.kv.mvcc with parameters of type WritesModifierConstructorDescriptionMutableView
(KVStore kv, Reads reads, Writes writes) MutableView
(KVStore kv, Writes writes) Constructor with no read tracking and caller-providedWrites
.