ResyncRequest class

Reliable-sync reverse-channel control frame: request a covering Snapshot on a detected gap (#lzsync, protocol.md § ResyncCoordinator).

Carries no node content, so it is permission-filter- and blob-spill- transparent. Wire form (inside its IpcMessage tag): {"from_epoch": N}. Mirrors ResyncRequest in lazily-rs/src/ipc.rs.

Constructors

ResyncRequest({required Epoch fromEpoch})
const

Properties

fromEpoch int
The requesting receiver's last_epoch; the sender replies with a Snapshot whose epoch >= from_epoch.
final
hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
override
toWire() Map<String, Object>

Operators

operator ==(Object other) bool
The equality operator.
override

Static Methods

fromWire(Object? value) ResyncRequest