core-async

vemv 2019-12-27T16:14:20.064900Z

in clojurescript, is it OK to perform IO in go/`go-loop` blocks? ...in JVM clj it certainly isn't, but maybe in cljs it doesn't matter given js IO doesn't block

mccraigmccraig 2019-12-28T11:56:38.066300Z

it's blocking i/o that's problematic with core.async on the jvm, rather than i/o per se @vemv - non-blocking i/o returning promises or channels is ok. js non-blocking i/o is fine too

vemv 2019-12-28T11:59:12.066500Z

thanks!

2019-12-30T04:11:10.066700Z

Ya, even on JVM non blocking IO is fine within a go block