~aleteoryx/muditaos

ref: e35fca8524dfe78c3076073d20bedad897e876a7 muditaos/module-apps/application-music-player/doc/data/update_data_sequence_flow.puml -rw-r--r-- 598 bytes
e35fca85 — Lefucjusz [MOS-1064] Fix no input language selected for French/Spanish 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@startuml
skinparam BackgroundColor F0F0F0

participant "SongsPresenter" as presenter
participant "SongsModel" as model
participant "SongsRepository" as repo
participant "DataBase" as db

presenter -> model : play
model -> repo : updateRepository
repo -> db : GetLimited query

db -> repo : records
...
presenter -> model : getNextFilePath
model -> repo : getNextFilePath

repo -> model : NextFilePath
model -> presenter : NextFilePath
...
presenter -> model : getPreviousFilePath
model -> repo : getPreviousFilePath

repo -> model : PreviousFilePath
model -> presenter : PreviousFilePath

@enduml