Interface INotificationProcessor<T extends INotificationData>
public interface INotificationProcessor<T extends INotificationData>
Represents a processor for an
INotificationData type.
An INotificationProcessor implementation must be declared using Service Provider Interface ( @see SPI ).
-
Method Summary
Modifier and TypeMethodDescriptionvoidprocess(T notificationData, Collection<INotificationRecipient> recipients) Process anINotificationDatawith theINotificationRecipientlist.
-
Method Details
-
process
Process anINotificationDatawith theINotificationRecipientlist.- Parameters:
notificationData- theINotificationDatainstancerecipients- theINotificationRecipientlist
-