Hm, I more suspect the usage problem. I am trying ...
# koin
t
Hm, I more suspect the usage problem. I am trying to replace static factory with using koin by replacing actual methods implementation to just calling
get()
. This factory methods can be called from different threads and it may happen that this methods has been called concurrently. As
bean {}
declares
singleton
- I hoped that I don't need to introduce synchronized method implementation.