![JAR search and dependency download from the Maven repository](/logo.png)
main.app.cash.backfila.client.jooq.BackfillBatch.kt Maven / Gradle / Ivy
package app.cash.backfila.client.jooq
import app.cash.backfila.client.BackfillConfig
/**
* Encapsulates the data we pass to the `batchConsumer` callback.
*/
data class BackfillBatch (
/**
* The name of the database shard.
*/
val shardName: String,
/**
* A jooq transacter to transact with the database shard.
*/
val transacter: BackfillJooqTransacter,
/**
* The keys that should be processed to perform the backfill action.
*/
val keys: List,
/**
* Backfill configuration.
*/
val config: BackfillConfig,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy