Async call to a func defined in extension from an isolated function in an actor preserves the isolation?
I have a function foo in an extension of a Protocol and it’s async. I have an actor Actor that implements the Protocol. And I have a function baz in the actor which calls await foo Question: will the foo be run on the actor or the actor will be released? swift async-await structured-concurrency
Call to actor-isolated instance method in a synchronous actor-isolated context
I have an actor protocol declared like this: