We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7184291 commit c321a13Copy full SHA for c321a13
README.md
@@ -2,6 +2,31 @@
2
3
Strongly typed background tasks with FastAPI and Google CloudTasks.
4
5
+```mermaid
6
+sequenceDiagram
7
+ autonumber
8
+ actor User
9
+ participant Service
10
+ participant CloudTasks
11
+ participant Worker
12
+
13
14
+ User ->>+ Service: /trigger
15
16
17
+ rect rgb(100,130,180)
18
+ note right of Service: hello.delay()
19
+ Service -->>+ CloudTasks: Create task
20
+ CloudTasks -->>- Service: Accepted
21
+ end
22
23
+ Service ->>- User: Hello task triggered
24
+ note right of CloudTasks: Async
25
+ CloudTasks -->>+ Worker: /hello
26
+ Worker -->>- CloudTasks: 200
27
28
+```
29
30
## Installation
31
32
```
0 commit comments