Hi!
Besides realtime notifier through SignalR, I would like to add an additional notification channel. Can you please describe the steps required to add a new notification distributer.
BTW, I tried the following in AspNetZero (AspNetCore) WebHostModule, but somehow distributer enumerator isn't recognized (only provider is found):
Configuration.Notifications.Distributers.Add<MyNotificationDistributer>();
7 Answer(s)
-
0
Which version of ABP are you on?
You probably don't want distributers though: aspnetboilerplate/aspnetboilerplate#4326 (comment)
-
0
I use v5.5.2 of ASP.NET CORE & Angular with Abp 3.8.1
Maybe I didn't get the idea. Do you mean create my custom notifier and call it when needed? I just found it simple to just add one more distributer to the list.
-
0
Support for multiple distributers was added in ABP 4.1.
-
0
Excellent! Seems it's the time to upgrade :-)
Thank you
-
0
Can you please just tell me why you think I don't need distributors? what other way would you recommend?
-
0
It seems more appropriate to add multiple
IRealTimeNotifier
(notifying users in a different ways) than multipleINotificationDistributor
(deciding which users to distribute to).Would multiple
IRealTimeNotifier
support your use case? -
0
I'll be able to check this after finishing the upgrade. bear with me please :) For now, I'm opening a new ticket as a result of this upgrade