pub struct Update { /* private fields */ }Expand description
Update type which contains an information about all decoded blocks which are incoming from a remote peer. Since these blocks are not yet integrated into current document’s block store, they still may require repairing before doing so as they don’t contain full data about their relations.
Update is conceptually similar to a block store itself, however the work patters are different.
Implementations§
source§impl Update
impl Update
pub fn new() -> Self
sourcepub fn state_vector(&self) -> StateVector
pub fn state_vector(&self) -> StateVector
Returns a state vector representing an upper bound of client clocks included by blocks stored in current update.
sourcepub fn merge(&mut self, other: Self)
pub fn merge(&mut self, other: Self)
Merges another update into current one. Their blocks are deduplicated and reordered.