inline fun <reified R : Any> softSingleton(qualifier: Any? = null, generics: Boolean = false, override: Boolean = false, noinline postConstruct: GFactoryCallback1<R>? = null, noinline factory: GFactory0<R>): Unit
Register a soft singleton scoped factory for an instance of type R.
qualifier - An optional qualifier.
generics - If true this will preserve generic information of R.
override - If true this will override a existing provider of this type.
postConstruct - A post construct callback.
factory - The factory for type R.