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

commonMain.keep.CacheConfig.kt Maven / Gradle / Ivy

There is a newer version: 3.0.13
Show newest version
package keep

import koncurrent.Executor
import koncurrent.Executors
import kotlin.jvm.JvmStatic

interface CacheConfig {
    val namespace: String
    val executor: Executor

    companion object {
        @JvmStatic
        val DEFAULT_NAMESPACE = "app"

        @JvmStatic
        val DEFAULT_EXECUTOR = Executors.default()
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy