You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
533 B
Plaintext
33 lines
533 B
Plaintext
3 years ago
|
@startuml
|
||
|
autonumber
|
||
|
hide footbox
|
||
|
|
||
|
footer "LTDFS | Ruakij"
|
||
|
|
||
|
title "Read from opened file"
|
||
|
|
||
|
participant Client
|
||
|
control SiteA
|
||
|
boundary SiteB
|
||
|
|
||
|
|
||
|
Client -> SiteA ++ : Read Section
|
||
|
|
||
|
SiteA -> SiteA : Check availablility
|
||
|
alt Not locally available
|
||
|
|
||
|
SiteA -> SiteB ++ : Read Section
|
||
|
SiteB --> SiteA -- : Section-Data
|
||
|
note right
|
||
|
Section-Data is
|
||
|
being streamed
|
||
|
end note
|
||
|
|
||
|
SiteA ->> SiteA ++ : Save in cache
|
||
|
SiteA --
|
||
|
|
||
|
end
|
||
|
|
||
|
SiteA --> Client -- : Section-Data
|
||
|
|
||
|
@enduml
|