
commonMain.space.kscience.dataforge.data.GoalLogger.kt Maven / Gradle / Ivy
package space.kscience.dataforge.data
import kotlin.coroutines.CoroutineContext
public interface GoalLogger : CoroutineContext.Element {
override val key: CoroutineContext.Key<*> get() = GoalLogger
public fun emit(vararg tags: String, message: suspend () -> String)
public companion object : CoroutineContext.Key{
public const val WARNING_TAG: String = "WARNING"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy