Skip to content

1.5.0-preview7

Pre-release
Pre-release
Compare
Choose a tag to compare
@yevhen yevhen released this 10 Aug 22:06
· 470 commits to master since this release

Breaking Changes

  • Custom IActorActivator now need to be registered via native DI instead of dedicated Activator() registration method. See DependencyInjection.Autofac and Demo examples.

New Features

  • Full support for native DI via additional Services(Action<IServiceCollection> configuie) method on ClusterConfigirator. This allows registering custom placement strategies, etc
  • Default actor activator now resolves actor instances via native DI
  • New Actor constructor overloads which makes using native DI possible. Id, IActorRuntime - are all optional now. To use native DI just make them optional in subclass constructors as well. See DependencyInjection.Native and Demo examples.