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
Breaking: EventFlowOptions.AddDefaults(...) now also adds event
definitions
New: RabbitMQ is now supported through the new
NuGet package called EventFlow.RabbitMQ which enables domain events to be
published to the bus
New: If you want to subscribe to all domain events, you can implement
and register a service that implements ISubscribeSynchronousToAll. Services
that implement this will automatically be added using the AddSubscribers(...) or AddDefaults(...) extension to EventFlowOptions
New: Use EventFlowOptions.UseAutofacAggregateRootFactory(...) to use an
Autofac aggregate root factory, enabling you to use services in your
aggregate root constructor
New: Use EventFlowOptions.UseResolverAggregateRootFactory() to use the
resolver to create aggregate roots. Same as UseAutofacAggregateRootFactory(...) but for when using the internal IoC
container
New: Use EventFlowOptions.AddAggregateRoots(...) to register aggregate root
types
New: Use IServiceRegistration.RegisterType(...) to register services by
type