DataSource Notification.NET
6.2.4-347-7da6b22
|
Caplin | |
DataSource | |
Notification | |
INotificationApplicationListener | You must implement this interface. The Notification API will call back on this interface to inform you that a user has logged in and requested their notifications. This is passed into the constructor of NotificationProvider. Once a NotificationChannel has been opened, Notifications can be sent on it. |
INotificationChannel | The NotificationChannel is a notification communication channel associated with a particular user. It allows your application to add and remove Notifications for a user which will be received by a front end application. |
INotificationChannelListener | You should implement (and register) the NotificationChannelListener if you want to receive a callback when a user has dismissed a notification from their screen. The NotificationChannelListener also allows your application to receive information about other interactions with an onscreen notification. For example, the user interface may inform your adapter that a notification has been read. |
Notification | Notification represents a single notification to be sent to a client. It is identified by the uniqueId passed into the constructor. Methods are provided for setting field access. |
NotificationConfiguration | The type NotificationConfiguration, which can be used to create a NotificationProvider instance. |
NotificationProvider | If you want to manage notifications within your application you MUST create an instance of this class. This class manages notification subscription requests and provides your NotificationApplicationListener with callbacks when users log in and log out of the system. |