All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.scheduling.QuartzJobRunner.kt Maven / Gradle / Ivy

The newest version!
package io.fluidsonic.raptor

import kotlinx.coroutines.*
import org.quartz.*
import org.quartz.Job


@DisallowConcurrentExecution
@PersistJobDataAfterExecution
internal class QuartzJobRunner : Job {

	override fun execute(context: JobExecutionContext) {
		runBlocking {
			QuartzJobScheduler.executeJob(context)
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy