Package org.cxbox.notifications.service
Interface IDeliveryService
-
- All Known Implementing Classes:
AbstractDeliveryService,PushDeliveryService
public interface IDeliveryService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDeliveryType()intgetServiceId()booleanisActive()booleanisDelayed()voidmarkDelivered(Notification notification)List<Notification>queryNotifications()voidsend(Notification notification)
-
-
-
Method Detail
-
getServiceId
int getServiceId()
-
getDeliveryType
String getDeliveryType()
-
isActive
boolean isActive()
-
isDelayed
boolean isDelayed()
-
queryNotifications
List<Notification> queryNotifications()
-
send
void send(Notification notification)
-
markDelivered
void markDelivered(Notification notification)
-
-