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

commonMain.org.koin.mp.ThreadLocal.kt Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
package org.koin.mp

expect open class Lockable()

expect open class ThreadLocal() {
    fun get(): T?
    fun set(value: T?)
    fun remove()
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy