Skip to content

Instantly share code, notes, and snippets.

@0xMarK
Last active October 22, 2024 07:57
Show Gist options
  • Save 0xMarK/276822c910d4e65a9fad8a973faf6420 to your computer and use it in GitHub Desktop.
Save 0xMarK/276822c910d4e65a9fad8a973faf6420 to your computer and use it in GitHub Desktop.
Push work to background queues
Task {
await withDiscardingTaskGroup { group in
for asset in allAssets {
group.addTask {
asset.load()
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment