public interface TodoReceiver extends OsidReceiver
The todo receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted todos.
Modifier and Type | Method and Description |
---|---|
void |
changedChildOfTodos(Id notificationId,
IdList todoIds)
The callback for notifications of changes to children of todo
hierarchy nodes.
|
void |
changedTodos(Id notificationId,
IdList todoIds)
The callback for notifications of updated todos.
|
void |
deletedTodos(Id notificationId,
IdList todoIds)
the callback for notification of deleted todos.
|
void |
newTodos(Id notificationId,
IdList todoIds)
The callback for notifications of new todos.
|
down, up
void newTodos(Id notificationId, IdList todoIds)
notificationId
- the notification Id
todoIds
- the Ids
of the new todosmandatory
- This method must be implemented. void changedTodos(Id notificationId, IdList todoIds)
notificationId
- the notification Id
todoIds
- the Ids
of the updated todosmandatory
- This method must be implemented. void deletedTodos(Id notificationId, IdList todoIds)
notificationId
- the notification Id
todoIds
- the Ids
of the deleted todosmandatory
- This method must be implemented. void changedChildOfTodos(Id notificationId, IdList todoIds)
notificationId
- the notification Id
todoIds
- the Ids
of the Todos
whose children have changedmandatory
- This method must be implemented.