What is the difference between calling `cf.run` vs. `cf.task` ?
d
What is the difference between calling
cf.run
vs.
cf.task
?
j
Run creates a task and runs it, returning the result. Task creates a task and returns it without running it, in case you want to control execution yourself.
👍 1
d
Thank you