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
This feature exists on the JVM primarily to support compile-time dependency injection of serializers and other configuration elements. I think we can use it in Akka.NET to do the same, but also to potentially resolve some issues such as #1675
I think we can use ActorSystemSetup to do the following:
Same as JVM - pass in Config elements programmatically before the ActorSystem starts
Use Action type builders to configure parts of the ActorSystem prior to creating any actors - this could be used to do things like safely instantiate the a DI kernel or to instrument specific ActorSystemExtensions.
The text was updated successfully, but these errors were encountered:
Version: 1.4.6 and later
This feature exists on the JVM primarily to support compile-time dependency injection of serializers and other configuration elements. I think we can use it in Akka.NET to do the same, but also to potentially resolve some issues such as #1675
I think we can use
ActorSystemSetup
to do the following:Config
elements programmatically before theActorSystem
startsAction
type builders to configure parts of theActorSystem
prior to creating any actors - this could be used to do things like safely instantiate the a DI kernel or to instrument specificActorSystemExtension
s.The text was updated successfully, but these errors were encountered: