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

commonMain.space.kscience.dataforge.data.GoalExecutionRestriction.kt Maven / Gradle / Ivy

There is a newer version: 0.7.0
Show newest version
package space.kscience.dataforge.data

import kotlin.coroutines.CoroutineContext

public enum class GoalExecutionRestrictionPolicy {
    NONE,
    WARNING,
    ERROR
}

public class GoalExecutionRestriction(
    public val policy: GoalExecutionRestrictionPolicy = GoalExecutionRestrictionPolicy.ERROR,
) : CoroutineContext.Element {
    override val key: CoroutineContext.Key<*> get() = Companion

    public companion object : CoroutineContext.Key
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy