Do you really need core.async for this?
Seems like you can just normally call the service to get the token once at
the beginning and then just go in a normal loop of calling for the next
message -> handling message -> repeat.
I'm not sure there's any reason to use core.async in ClojureScript ot
Hi all,
I am attempting to use core.async to poll a service -
https://gist.github.com/ckkashyap/c8423dcfc3a3f28b67e18ae76cc13f53
Broadly, I need to hit the service endpoint with a secret to get a token
and subsequently use the token to poll for messages.
I'd appreciate any feedback on the appr