runsInContext

abstract fun runsInContext(contextIdValue: String, limit: Int, since: Instant?): List<ExtractionRun>

One tenant's runs, newest first.

Return

At most limit runs, newest first by start time and then by run id.

Parameters

contextIdValue

The tenant.

limit

The most runs to return. Must be positive.

since

When non-null, only runs started at or after this instant.

Throws

if limit is not positive.


open fun runsInContext(contextId: <Error class: unknown class>, limit: Int, since: Instant?): List<ExtractionRun>

runsInContext for Kotlin callers holding a typed tenant.

Return

At most limit runs, newest first.

Parameters

contextId

The tenant.

limit

The most runs to return. Must be positive.

since

When non-null, only runs started at or after this instant.