Remove the given notification from the UI. This also remove the notification message
from unread and pinned items list.
Clear all notifications from the UI. This also remove all notification messages from unread and
pinned items list.
Remove all notifications which matches the given notificationType and name. This
method also remove the notifications from unread and pinned items list.
A notification's type (Notification.type) to be cleared. Passing null means not to
apply the filter on this field.
A notification's name (Notification.name) to be cleared. Passing null means not to
apply the filter on this field.
Get all notifications in the UI.
Get all notifications in the UI by the given notificationType and name.
A notification's type (Notification.type) to filter. Passing null means not to apply the filter
on this field.
A notification's name (Notification.name) to filter. Passing null means not to apply the filter on this field.
Get all notifications being shown in the UI.
Get all notifications being shown in the UI by the given notificationType and name.
A notification's type (Notification.type) to filter. Passing null means not to apply the filter
on this field.
A notification's name (Notification.name) to filter. Passing null means not to apply the filter on this field.
Get all unread notifications in the UI.
Get all unread notifications in the UI by the given notificationType and name.
A notification's type (Notification.type) to filter. Passing null means not to apply the filter
on this field.
A notification's name (Notification.name) to filter. Passing null means not to apply the filter on this field.
Mark the given notification as read.
Mark all notifications as read.
Mark notifications as read by the given notificationType and name.
A notification's type (Notification.type) to filter. Passing null means not to apply the filter
on this field.
A notification's name (Notification.name) to filter. Passing null means not to apply the filter on this field.
Notify user by displaying the given notification message on the screen.
Pin the given notification on the screen.
Unpin the given notification off the screen.
Generated using TypeDoc
A
ngservice interface having main responsibilities onapplicationnotificationUIlogics. Please note that this class does NOT directly involve with server-side push notification logics. It's only a client-side API providing the way to interact with notificationUIcomponents. A Notification can bepinnedon the screen --you can do this via pinNotification method. This will make it not to be removed from the screen when display timeout is reached unless the user clicks on the close button. Allunreadnotifications --those which automatically removed when display timeout is reached-- will be displayed as a badge notification showing the number ofunreaditems. You can also retrieve the list ofunreaditems by using getUnreadNotifications method.shiorin, tee4cute
Notification