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

commonMain.space.kscience.dataforge.data.GoalLogger.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 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