| 12345678910111213141516 |
- using System.Threading.Tasks;
- namespace Abp.Notifications
- {
- /// <summary>
- /// Interface to send real time notifications to users.
- /// </summary>
- public interface IRealTimeNotifier
- {
- /// <summary>
- /// This method tries to deliver real time notifications to specified users.
- /// If a user is not online, it should ignore him.
- /// </summary>
- Task SendNotificationsAsync(UserNotification[] userNotifications);
- }
- }
|