override fun run()

in entity-browser-app/src/main/kotlin/jetbrains/xodus/browser/web/db/JobsService.kt [41:51]


    override fun run() {
        logger.info { "step $step of $this" }
        try {
            store.transactional {
                affectedEntities.take(bulkSize).asSequence().forEach { it.doAction() }
            }
        } catch (e: Exception) {
            logger.error(e) { "error executing $step of $this" }
        }
        step++
    }