You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
distributed actor VegetableChopper: Chopping {
@ActorID.Metadata(\.receptionID)
var receptionID: String
init(actorSystem: ActorSystem) async {
self.actorSystem = actorSystem
self.receptionID = "*" // default key for "all of this type"
}
}
and we can do instead:
self.receptionID = .default // default key for "all of this type"
The text was updated successfully, but these errors were encountered:
Then we can avoid this:
and we can do instead:
The text was updated successfully, but these errors were encountered: