blob: 3e68555739bce14de1902522ae0d18062f2f2956 (
plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
%\begin{tikzpicture}
%
% \begin{umlseqdiag}
%
% \umlactor[no ddots]{Benutzer}
% \umlobject[no ddots]{Podcatcher1}
% \umlobject[no ddots]{Podcatcher2}
% \umlobject[no ddots]{Webfrontend}
% \umlobject[no ddots]{Server}
%
% \begin{umlcall}[dt=5, op=abonniere Podcast]{Benutzer}{Podcatcher1}
% \begin{umlcallself}[dt=8, op=füge Podcast zu Abos hinzu, type=synchron]{Podcatcher1}
% \end{umlcallself}
% \begin{umlcall}[op=lade Änderungen hoch]{Podcatcher1}{Server}
% \begin{umlcallself}[dt=8, op=speichere Änderungen]{Server}
% \end{umlcallself}
% \end{umlcall}
% \end{umlcall}
%
% \begin{umlcall}[dt=10, op=Abos anzeigen]{Benutzer}{Webfrontend}
% \begin{umlcall}[dt=5, op=hole Aboliste, return=Aboliste]{Webfrontend}{Server}
% \end{umlcall}
% \end{umlcall}
%
% \begin{umlcall}[dt=10, op=Abos anzeigen]{Benutzer}{Podcatcher2}
% \begin{umlcall}[dt=5, op=hole Aboliste, return=Aboliste]{Podcatcher2}{Server}
% \end{umlcall}
% \end{umlcall}
%
% \end{umlseqdiag}
%
%\end{tikzpicture}
\begin{sequencediagram}
\newthread{b}{Benutzer}
\newinst[2]{p1}{Podcatcher1}
\newinst{p2}{Podcatcher2}
\newinst[1]{w}{Webfrontend}
\newinst[1]{s}{Server}
\begin{call}{b}{abonniere Podcast}{p1}{}
\begin{callself}{p1}{füge Podcasts zu Abos hinzu}{}
\begin{call}{p1}{lade Änderungen hoch}{s}{}
\begin{callself}{s}{\shortstack{speichere\\Änderungen\\persistent}}{}
\end{callself}
\end{call}
\end{callself}
\end{call}
\begin{call}{b}{Abos anzeigen}{w}{}
\begin{call}{w}{hole Aboliste}{s}{Aboliste}
\end{call}
\end{call}
\begin{call}{b}{Abos anzeigen}{p2}{}
\begin{call}{p2}{hole Aboliste}{s}{Aboliste}
\end{call}
\end{call}
\end{sequencediagram}
|