Fork me on GitHub
#reagent
<
2015-08-22
>
escherize02:08:21

Thanks @darwin, that could be a blog post very interesting

mikethompson12:08:07

@benzen: have you read through the re-frame Wiki? If not, I'd have a browse.

benzen13:08:59

@mikethompson: I did, but it still wasn't clear to me why you'r using core async for this part

mikethompson13:08:33

dispatched events have to be queued

mikethompson13:08:54

And not performed synchronously

mikethompson13:08:11

Use of core.async is there for that reason

mikethompson13:08:13

That should give you a feel for why dispatch has to be async (queued for handling "later")

mikethompson13:08:46

So, in summary: 1. You first have to understand why a dispatch has to be handled aysnc 2. Then realise that use of core.async is an implementation detail in the service of that need.