toggle menu
Jochens Next Dinner
androidJvm
switch theme
search in API
app
/
be.hogent.jochensnextdinner.data
/
RecipeRepository
Recipe
Repository
interface
RecipeRepository
Interface for the RecipeRepository. It contains the methods for managing Recipe data.
Inheritors
CachingRecipeRepository
Members
Functions
delete
Recipe
Link copied to clipboard
abstract
suspend
fun
deleteRecipe
(
recipe
:
Recipe
)
get
Recipe
Link copied to clipboard
abstract
fun
getRecipe
(
id
:
Long
)
:
Flow
<
Recipe
?
>
get
Recipes
Link copied to clipboard
abstract
fun
getRecipes
(
)
:
Flow
<
List
<
Recipe
>
>
insert
Recipe
Link copied to clipboard
abstract
suspend
fun
insertRecipe
(
recipe
:
Recipe
)
refresh
Link copied to clipboard
abstract
suspend
fun
refresh
(
)
save
Recipe
Link copied to clipboard
abstract
suspend
fun
saveRecipe
(
recipe
:
Recipe
)
:
Recipe
update
Recipe
Link copied to clipboard
abstract
suspend
fun
updateRecipe
(
recipe
:
Recipe
)