Files
presentations/2026/celery2/slides/00-intro.md
T
2026-09-24 16:39:17 +02:00

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>