diff --git a/docs/ArchitectureLearningJourney.md b/docs/ArchitectureLearningJourney.md index 7a6ab2d76..6b6fa4420 100644 --- a/docs/ArchitectureLearningJourney.md +++ b/docs/ArchitectureLearningJourney.md @@ -70,7 +70,7 @@ Here's what's happening in each step. The easiest way to find the associated cod
ForYouViewModel
calls GetSaveableNewsResourcesUseCase
to obtain a stream of news resources with their bookmarked/saved state. No items will be emitted into this stream until both the user and news repositories emit an item. While waiting, the feed state is set to Loading
.
+ ForYouViewModel
calls GetUserNewsResourcesUseCase
to obtain a stream of news resources with their bookmarked/saved state. No items will be emitted into this stream until both the user and news repositories emit an item. While waiting, the feed state is set to Loading
.
NewsFeedUiState.Loading
GetSaveableNewsResourcesUseCase
combines the list of news resources with the user data to emit a list of SaveableNewsResource
s.
+ GetUserNewsResourcesUseCase
combines the list of news resources with the user data to emit a list of UserNewsResource
s.
GetSaveableNewsResourcesUseCase.invoke
+ GetUserNewsResourcesUseCase.invoke