Aaronontheweb on dev
Remove string interpolation fro… (compare)
Aaronontheweb on dev
Made cleanup call thread-safe (… (compare)
dependabot-preview[bot] on nuget
Bump System.Data.SqlClient from… (compare)
Is this really the correct way to do this?
protected override void PreStart()
{
var producer = Context.System.GetExtension<DIExt>();
childActor = Context.ActorOf(producer.Props("MyActor"));
base.PreStart();
}
Why cant I do this?
protected override void PreStart()
{
var producer = Context.System.GetExtension<DIExt>();
childActor = Context.ActorOf(producer.Props<MyActor>());
base.PreStart();
}