Ios swift – Serialising the calling of Task blocks from a non async environment
I am calling a function multiple times one after another and am trying to synchronise it so it happens serially. The issue is, the function contains a Task, which executes in parallel. I have serialized the internals of my Task…