Fork me on GitHub
#missionary
<
2022-02-07
>
martinklepsch11:02:41

CLJS Async question: Lets say I have a websocket that sends events and a missionary flow that does something with those events — is there any timer/asynchronicity introduced between the websocket event and the handler? I’m asking to better understand how/if missionary’s behavior could depend on the browser “pausing” a tab

leonoel12:02:45

There's no implicit scheduling. On ws event, the whole pipeline runs as far as it can synchronously in the handler callback.

martinklepsch12:02:03

great, thats perfect