Interface TodoReceiver
- All Superinterfaces:
OsidReceiver
The todo receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted todos.
-
Method Summary
Modifier and TypeMethodDescriptionvoidchangedChildOfTodos(Id notificationId, IdList todoIds) The callback for notifications of changes to children of todo hierarchy nodes.voidchangedTodos(Id notificationId, IdList todoIds) The callback for notifications of updated todos.voiddeletedTodos(Id notificationId, IdList todoIds) the callback for notification of deleted todos.voidThe callback for notifications of new todos.Methods inherited from interface OsidReceiver
down, up
-
Method Details
-
newTodos
-
changedTodos
-
deletedTodos
-
changedChildOfTodos
The callback for notifications of changes to children of todo hierarchy nodes.- Parameters:
notificationId- the notificationIdtodoIds- theIdsof theTodoswhose children have changed- Compliance:
mandatory- This method must be implemented.
-