public interface TodoProducerReceiver extends OsidReceiver
The todo producer receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted todo producers.
| Modifier and Type | Method and Description |
|---|---|
void |
changedTodoProducers(Id notificationId,
IdList todoProducerIds)
The callback for notification of updated todo producers.
|
void |
deletedTodoProducers(Id notificationId,
IdList todoProducerIds)
The callback for notification of deleted todo producers.
|
void |
newTodoProducers(Id notificationId,
IdList todoProducerIds)
The callback for notifications of new todo producers.
|
down, upvoid newTodoProducers(Id notificationId, IdList todoProducerIds)
notificationId - the notification Id todoProducerIds - the Ids of the new
TodoProducers mandatory - This method must be implemented. void changedTodoProducers(Id notificationId, IdList todoProducerIds)
notificationId - the notification Id todoProducerIds - the Ids of the updated
TodoProducers mandatory - This method must be implemented. void deletedTodoProducers(Id notificationId, IdList todoProducerIds)
notificationId - the notification Id todoProducerIds - the Ids of the deleted
TodoProducers mandatory - This method must be implemented.