<@U4UGS5FC7> I am very interested in doing <https:...
# arrow
s
@raulraja I am very interested in doing https://kotlinlang.slack.com/archives/C5UPMM0A0/p1585855394139500?thread_ts=1585852655.135300&amp;cid=C5UPMM0A0 on version 0.10.4 (which i am using now). Can I implement
TaskOf<A>
somehow myself until it gets available in
0.11.0
(i am assuming this) ?
a
I believe TaskOf to be IO in that example
s
Thank you 🙂 🤦 I am stupid !
I thought it would have to do something with IO, but never actually tried to replace and test. I wanted everything mouth fed
a
haha know the feeling, no worries! It actually had an explanation, because
TaskOf<A>
is used to hide a
IO<Throwable, A>
so the idea is that you hide the error to not worry about it
s
Awesome. Thanks a lot. Btw, works with IO. Now My whole application is wrapped in IO which is super nice, because on the startup I had to do many
runSync
because before IO could only start from controller.
👏 1