Use correct method call (AddActors) for registering Actors.

This commit is contained in:
Nick Greenfield 2021-05-10 13:44:29 -07:00 committed by Ryan Nowak
parent 33d7a2dafd
commit 5a84326f3d
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ Actor registration is part `ConfigureServices` in `Startup.cs`. The `ConfigureSe
Inside `ConfigureServices` you can:
- Register the actor runtime (`UseActors`)
- Register the actor runtime (`AddActors`)
- Register actor types (`options.Actors.RegisterActor<>`)
- Configure actor runtime settings `options`
- Register additional service types for dependency injection into actors (`services`)