main.app.cash.backfila.client.jooq.BackfillJooqTransacter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-jooq Show documentation
Show all versions of client-jooq Show documentation
Backfila is a service that manages backfill state, calling into other services to do batched work.
package app.cash.backfila.client.jooq
import org.jooq.DSLContext
interface BackfillJooqTransacter {
fun transaction(
comment: String,
callback: (ctx: DSLContext) -> RETURN_TYPE,
): RETURN_TYPE
}