mirror of
https://gricad-gitlab.univ-grenoble-alpes.fr/tienyoun/presentations.git
synced 2026-09-26 13:31:01 +00:00
16 lines
580 B
Markdown
16 lines
580 B
Markdown
<div data-mermaid>
|
|
<script type="text/mermaid">
|
|
%%{init: {'theme': 'light', 'themeVariables': { 'darkMode': false }}}%%
|
|
sequenceDiagram
|
|
actor Web Browser
|
|
participant Django
|
|
participant RabbitMQ@{ "type" : "database" }
|
|
Web Browser->>+Django: GET /progress
|
|
Django-->>Web Browser: List of current tasks
|
|
Django->>+RabbitMQ: Listen for events
|
|
RabbitMQ-->>Django: Steam of events
|
|
Django-->>Web Browser: Steam of events
|
|
deactivate Django
|
|
</script>
|
|
</div>
|