public interface RecipeReceiver extends OsidReceiver
The recipe receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Recipe
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedRecipes(IdList recipeIds)
The callback for notification of updated recipes.
|
void |
deletedRecipes(IdList recipeIds)
The callback for notification of deleted recipes.
|
void |
newRecipes(IdList recipeIds)
The callback for notifications of new recipes.
|
down, upvoid newRecipes(IdList recipeIds)
recipeIds - the Ids of the new Recipes
mandatory - This method must be implemented. void changedRecipes(IdList recipeIds)
recipeIds - the Ids of the updated Recipes
mandatory - This method must be implemented. void deletedRecipes(IdList recipeIds)
recipeIds - the Ids of the deleted Recipes
mandatory - This method must be implemented.