Fork me on GitHub
#re-frame
<
2015-12-28
>
underplank06:12:04

Hi all. I have an event handler that is currently using a go block to make a http request. In the go block I dispatch an event when its done. The issue is that the event handler returns the channel. Which breaks the default event handler interface. How do you get around this? should I not be making http calls in my event handlers?

underplank06:12:13

nvm… just found the wiki page. makes sense now.