Jetpack Compose will have multi-threaded compositions at some point, and so it should be possible to instantiate Stores from non-main threads. The Bootstrapper is currently invoked from Store constructor, it should continue be executing on main thread. We probably need an ability to manually trigger the Bootstrapper.
Jetpack Compose will have multi-threaded compositions at some point, and so it should be possible to instantiate
Stores
from non-main threads. TheBootstrapper
is currently invoked fromStore
constructor, it should continue be executing on main thread. We probably need an ability to manually trigger theBootstrapper
.