Vaibhav Jaiswal
11/15/2024, 9:00 AMscope(named("test")) {
scoped { Child() }
}
single {
Parent(child = getScope(...).get())
}
If i now clear test scope using getKoin().deleteScope()
, and inject Parent, will it create new instance of Parent, with a new instance of child
or will Parent instance remain same??arnaud.giuliani
11/15/2024, 5:03 PMarnaud.giuliani
11/15/2024, 5:03 PMVaibhav Jaiswal
11/16/2024, 9:00 AMChild
in this case, has to be in the same scope ?arnaud.giuliani
11/18/2024, 8:21 AM