FactoryKey

fun <T : Any> FactoryKey(type: KClass<T>): FactoryKey<T, Unit>

Creates a FactoryKey for services that do not require parameters for creation.


Creates a FactoryKey for the reified type T which may take parameters of type GetParams.


@JvmName(name = "FactoryKeyUnit")
inline fun <T : Any> FactoryKey(): FactoryKey<T, Unit>

Creates a FactoryKey for the reified type T that does not require parameters for creation.