Say I have
Task(priority: .high) {
await callSomething()
}
func callSomething() async {}
does the callSomething get called with the same high priority as the Task priority? ie does it inherit the Task priority?
I know it will get sent to another actor i just dont know if it assumes the same priority.