Hi, I just have a quick question. I am using callbacks that run Go code to modify a Go-wasm datastructure. These callbacks are essentially Wrapped Go Funcs called from js.
Reading the docs, I've realized that each callback runs in its own goroutine. Now, I'm wondering if I should protect access to the datastructure with mutexes. It's a bit unclear here as I think the current implementation guarantees that each callback fully returns before another one gets processed (because the event loop is prempted each time a wrapped function gets called until it returns). Seems to me that callbacks into Go code can only be sequentially processed(?) Also, if I launch a goroutine in one of these wrapped funcs, when would it be scheduled to run? Before the wrapped func it was launched from returns? Many thanks, -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/30825eb7-9d54-43a9-a755-5246c9e9be03n%40googlegroups.com.