public interface SubscriptionReceiver extends OsidReceiver
The subscription receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted subscriptions.
| Modifier and Type | Method and Description |
|---|---|
void |
changedSubscriptions(Id notificationId,
IdList susbcriptionIds)
The callback for notifications of updated subscriptions.
|
void |
deletedSubscriptions(Id notificationId,
IdList susbcriptionIds)
the callback for notification of deleted subscriptions.
|
void |
newSubscriptions(Id notificationId,
IdList susbcriptionIds)
The callback for notifications of new subscriptions.
|
down, upvoid newSubscriptions(Id notificationId, IdList susbcriptionIds)
notificationId - the notification Id susbcriptionIds - the Ids of the new
Subscriptions mandatory - This method must be implemented. void changedSubscriptions(Id notificationId, IdList susbcriptionIds)
notificationId - the notification Id susbcriptionIds - the Ids of the new
Subscriptions mandatory - This method must be implemented. void deletedSubscriptions(Id notificationId, IdList susbcriptionIds)
notificationId - the notification Id susbcriptionIds - the Ids of the new
Subscriptions mandatory - This method must be implemented.