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 TypeMethodDescriptionvoid
process
(T notificationData, Collection<INotificationRecipient> recipients) Process anINotificationData
with theINotificationRecipient
list.
-
Method Details
-
process
Process anINotificationData
with theINotificationRecipient
list.- Parameters:
notificationData
- theINotificationData
instancerecipients
- theINotificationRecipient
list
-