Should NotificationInfo add support for non-persistent notification?
See original GitHub issueCurrently NotificationInfo
is used as a temporary storage for NotificationDistributor
to convert from NotificationInfo
into UserNotificationInfo
and TenantNotificationInfo
respectively.
I am thinking if it is good to support non-persistent NotificationInfo
, meaning NotificationDistributor
will skip UserNotificationInfo
& TenantNotificationInfo
creation and still return UserNotification
in SaveUserNotifications
method.
For example, the application can leverage on IRealTimeNotifier
to send non-persistent notification.
Also, I am wondering if it is possible to have other real time notifier (or provider) to be co-exist with SignalRRealTimeNotifier
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
object changed notification with a non-persistent object
Hi! I use a non persistent object (that isn't derived from a base class like BaseObject) in a PopupView. The problem I have...
Read more >draft-ietf-netconf-notification-02
1.4 Requirements The requirements for this solution are as follows: o Initial release should ensure it supports notification in support of configuration ......
Read more >Changelog – Tasker and Join
Standalone feature: AutoNotification now allows you to block notifications without the need for Tasker! Added support for icon packs. This means you can...
Read more >10 Oracle Streams Advanced Queuing
If notifications come from non-persistent queues, messages are available to the callback directly; only RAW payloads are supported.
Read more >Windows OS Optimization Tool for VMware Horizon Guide
This guide documents how to use the Windows OS Optimization Tool for VMware Horizon and describes the features and usage.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Hi @ismcagdas, my objective to is to send out mobile push notification at the same time when notification is distributed.
Hi @hikalkan, It will be nice if real time notifier can co-exist with other notifier (e.g mobile/web push notification service). Of course, replacing
IRealTimeNotifier
could be a solution but it means that i would need to re-implementSignalRRealTimeNotifier
inside the overwritten implementation@hikalkan I see. Didn’t think of that. Thanks for the suggestion. 😉