commonMain.org.koin.mp.ThreadLocal.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of koin-core-jvm Show documentation
Show all versions of koin-core-jvm Show documentation
KOIN - Kotlin simple Dependency Injection Framework
package org.koin.mp
expect open class Lockable()
expect open class ThreadLocal() {
fun get(): T?
fun set(value: T?)
fun remove()
}