Skip to content
f·专注 ·j/k 章节 ·[/] 翻页 ·? 帮助

Swift Concurrency Fundamentals

  • Task is a unit of concurrent work, not a thread.
  • await suspends; it does not block the thread.
  • Use TaskGroup when child tasks are dynamic and independent.