Files
krontab/src/commonTest/kotlin/FailJob.kt
2023-08-09 13:01:20 +06:00

11 lines
325 B
Kotlin

package dev.inmo.krontab.utils
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.delay
import kotlinx.coroutines.launch
fun CoroutineScope.createFailJob(forTimeMillis: Long) = launch {
delay(forTimeMillis)
throw IllegalStateException("This job must be completed at before this exception happen")
}