commonMain.com.makeevrserg.mobilex.di.Single.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of service-locator Show documentation
Show all versions of service-locator Show documentation
KMM library with frequently used code
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
}