TestKit
IActorRef
s I assume they are still alive and kicking processing anything they are sent. At what point are they killed off and memory freed?
@ronnieoverby each actor will automatically terminate it's children if it will be terminated itself. Also you always can access children by using Context.Child(childName)
or Context.GetChildren()
. You can also target actors by using actor selection.
When it comes to strategy on how you can stop an actor, read this: https://petabridge.com/blog/how-to-stop-an-actor-akkadotnet/
dev
branch
CancellationToken