Fork me on GitHub
#missionary
<
2021-12-30
>
Panel21:12:18

I have a process that multiple http call and process them, should I use via granually to each call or just warp the whole thing in a via ?

Geoffrey Gaillard23:12:07

Running multiple effects in a single via is not forbidden nor wrong, but it defeats the purpose of Missionary. A blackbox is not desirable if you have a way to define, compose, and run effects the right way at hand.

Panel23:12:50

I wrapped the http call into a task, does it need to be also be wrapped in a (via blk http-task) ?

Geoffrey Gaillard23:12:28

Is your http call a blocking operation? If yes then via seems appropriate. Also, via returns a task, so no need to wrap you http call twice.