InjectableFactory

fun interface InjectableFactory<T : Any>

An injectable component whose job is to create components of the same type repeatably.

Functions

Link copied to clipboard
abstract fun make(requester: Any): T

Create the component from the given requesting object (i.e. the object that asked for the injection).