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

commonMain.com.makeevrserg.mobilex.di.Single.kt Maven / Gradle / Ivy

The newest version!
package com.makeevrserg.mobilex.di

/**
 * [Single] is a singleton value which will be a unique and single instant
 *
 * This can be helpful for repository storing, DB connection and etc
 */
class Single(factory: Factory) : Dependency {
    private val instance by lazy {
        factory.create()
    }
    override val value: T
        get() = instance
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy