Which platforms is threadsafe artifact published f...
# redux
b
Which platforms is threadsafe artifact published for?
p
All except wasm & linArm32. AtomicFu does not support those platforms
b
Ah, damn it. Was looking for WASM. But I guess I'll just stick with my coroutines-native-mt workaround for single thread enforcement (essentially a dedicated single thread coroutine context that handles all store interraction)
p
Ah, interesting. I'll keep that in mind and may look for a way to add those. Didn't know if anyone was actually using WASM. The non-threadsafe artifact still supports all platforms.
b
I'm workin on WASM+JS VDOM lib, so naturally Redux ties in nicely to that
BTW, WASM is still single-threaded. They plan to release threading later this year.
So no rush for threadsafe support
p
Interesting! Would be nice to have a createStore function that can be used for in common shared code. Hopefully AtomicFu will add support and that will be taken care of