public interface TriggerReceiver extends OsidReceiver
The trigger receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Trigger
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedTriggers(Id notificationId,
IdList triggerIds)
The callback for notification of updated trigger.
|
void |
deletedTriggers(Id notificationId,
IdList triggerIds)
The callback for notification of deleted triggers.
|
void |
newTriggers(Id notificationId,
IdList triggerIds)
The callback for notifications of new triggers.
|
down, upvoid newTriggers(Id notificationId, IdList triggerIds)
notificationId - the notification IdtriggerIds - the Ids of the new Triggers
mandatory - This method must be implemented. void changedTriggers(Id notificationId, IdList triggerIds)
notificationId - the notification IdtriggerIds - the Ids of the updated
Triggers mandatory - This method must be implemented.