-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflow.gv
More file actions
48 lines (41 loc) · 2.65 KB
/
flow.gv
File metadata and controls
48 lines (41 loc) · 2.65 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
digraph {
GoogleTasksTaskProviderService [shape=component, color=blue]
MicrosoftToDoTaskProviderService [shape=component, color=blue]
HabiticaTaskProviderService [shape=component, color=blue]
TaskManagementService [shape=component, color=blue]
TaskUpserted [shape=note, color=navy]
TaskCompletionChnaged [shape=note, color=navy]
SubtaskCompletionChnaged [shape=note, color=navy]
task_upserted_exchange [shape=box3d, color=darkorange]
task_completion_chnaged_exchange [shape=box3d, color=darkorange]
subtask_completion_chnaged_exchange [shape=box3d, color=darkorange]
task_upserted_task_management_queue [shape=box3d, color=crimson]
task_completion_chnaged_habitica_queue [shape=box3d, color=crimson]
task_completion_chnaged_microsoft_to_do_queue [shape=box3d, color=crimson]
task_completion_chnaged_google_tasks_queue [shape=box3d, color=crimson]
subtask_completion_chnaged_habitica_queue [shape=box3d, color=crimson]
subtask_completion_chnaged_microsoft_to_do_queue [shape=box3d, color=crimson]
subtask_completion_chnaged_google_tasks_queue [shape=box3d, color=crimson]
GoogleTasksTaskProviderService -> TaskUpserted
MicrosoftToDoTaskProviderService -> TaskUpserted
HabiticaTaskProviderService -> TaskUpserted
TaskManagementService -> TaskCompletionChnaged
TaskManagementService -> SubtaskCompletionChnaged
TaskUpserted -> task_upserted_exchange
TaskCompletionChnaged -> task_completion_chnaged_exchange
SubtaskCompletionChnaged -> subtask_completion_chnaged_exchange
task_upserted_exchange -> task_upserted_task_management_queue
task_completion_chnaged_exchange -> task_completion_chnaged_habitica_queue
task_completion_chnaged_exchange -> task_completion_chnaged_microsoft_to_do_queue
task_completion_chnaged_exchange -> task_completion_chnaged_google_tasks_queue
subtask_completion_chnaged_exchange -> subtask_completion_chnaged_habitica_queue
subtask_completion_chnaged_exchange -> subtask_completion_chnaged_microsoft_to_do_queue
subtask_completion_chnaged_exchange -> subtask_completion_chnaged_google_tasks_queue
task_upserted_task_management_queue -> TaskManagementService
task_completion_chnaged_habitica_queue -> HabiticaTaskProviderService
task_completion_chnaged_microsoft_to_do_queue -> MicrosoftToDoTaskProviderService
task_completion_chnaged_google_tasks_queue -> GoogleTasksTaskProviderService
subtask_completion_chnaged_habitica_queue -> HabiticaTaskProviderService
subtask_completion_chnaged_microsoft_to_do_queue -> MicrosoftToDoTaskProviderService
subtask_completion_chnaged_google_tasks_queue -> GoogleTasksTaskProviderService
}