Incomplete

data class Incomplete(val resumeFromSeq: Long, val headHash: String) : AuditResult

The verified range was larger than one page; resume from resumeFromSeq.

This is not an error — it is the pagination signal:

var r: AuditResult = saga audit "order-42" from 0L to Long.MAX_VALUE
while (r is Incomplete) {
r = saga audit "order-42" from r.resumeFromSeq to Long.MAX_VALUE
}

Constructors

Link copied to clipboard
constructor(resumeFromSeq: Long, headHash: String)

Properties

Link copied to clipboard

Recomputed hash of the last entry in this page.

Link copied to clipboard

The next fromSeq to pass to continue verification.