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
I would like to know how the notification handlers are executed. I was see the DomainEventsDispatcher that has:
foreach (var domainEvent in domainEvents)
{
await _mediator.Publish(domainEvent);
}
But no NotificationHandlers listens for IDomainEvent.
All NotificationHandlers listen for DomainNotificationBase. So who throws DomainNotificationBases like MemberSubscriptionExpirationDateChangedNotification through the bus? For the corresponding NotificationHandler to be executed.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I would like to know how the notification handlers are executed. I was see the DomainEventsDispatcher that has:
But no NotificationHandlers listens for IDomainEvent.
All NotificationHandlers listen for DomainNotificationBase. So who throws DomainNotificationBases like MemberSubscriptionExpirationDateChangedNotification through the bus? For the corresponding NotificationHandler to be executed.
Beta Was this translation helpful? Give feedback.
All reactions