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