Hi all,
so Task.Supervisor has start_child and async_nolink, both of them DON'T link to the caller, when should you use which?
@benwilson512 kindly replied to me on Slack:
Use async no link.
If you want a fire and forget
Use start child
However, I have some more questions:
Does one cover the functionality of the other?
If you want a fire and forget, you could still use async no link though, couldn't you?
Is there any scenario that you should absolutely use start_child instead of async_nolink?
Thanks,
Po