In v2.1 I was able to loop through a collection of INotifications and publish the events since it used var notificationType = notification.GetType(); to determine the exact notification type of the handlers to execute. In v3, it uses var notificationType = typeof(TNotification);, which causes it to look for handlers that implement IAsyncNotificationHandler. Can this be changed back to the original behavior?