hi, will Hilt generate a singleton per type I inst...
# dagger
a
hi, will Hilt generate a singleton per type I instantiate at runtime in the following code?
Copy code
@Singleton
class EventBus<T> @Inject constructor() {
t
I would assume yes because the injection site is going to have type for T that would be considered when it builds the graph.