~aleteoryx/muditaos

ref: a405cad694b867fcd2498984830bd97d4b9bde2f muditaos/module-apps/application-music-player/doc/data/update_data_sequence_flow.puml -rw-r--r-- 598 bytes
a405cad6Aleteoryx trim readme 2 months 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