- 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 callsawait foo
Question: will the foo
be run on the actor or the actor will be
released?