since
abstract suspend fun since(runId: RunId, seq: Long, limit: Int): JournalOutcome<List<JournalEntry<P>>>
Returns up to limit entries for runId whose JournalEntry.seq>= seq.
Suitable for streaming large runs without loading all entries at once.
Return
JournalOutcome.Ok with a (possibly empty) list, or JournalOutcome.Err on failure.
Parameters
seq
Inclusive lower bound on sequence numbers.
limit
Maximum number of entries to return.