audit
Entry point for all audit DSL forms.
Returns an AuditCommand intermediate. To execute the audit:
Unbounded (full chain): call AuditCommand.execute or use the range form with
from 0L to Long.MAX_VALUE.Ranged: chain
from a to bon the returned AuditCommand.
Usage
// Full chain (unbounded):
val r = (saga audit "order-42").execute()
// or equivalently:
val r = saga audit "order-42" from 0L to Long.MAX_VALUE
// Ranged:
val r = saga audit "order-42" from 0L to 5000LContent copied to clipboard
Return
AuditCommand — the intermediate for execute / from … to.
Parameters
id
The run identifier string. Wrapped in RunId before calling verify.