Update on Overleaf.

This commit is contained in:
jsh77 2021-05-03 19:04:23 +00:00 committed by overleaf
parent 63f44e2187
commit e7ce622cdf

View File

@ -44,28 +44,28 @@ The central structure for the operation of the software is the \verb'Proxy' stru
]
% Nodes
\node[rednode] at (0,1.25) (source) {Packet\\Source};
\node[bluenode] at (2,1.25) (sourcechan) {Source\\Queue};
\node[rednode] at (5,2.5) (consumer1) {Consumer\\1};
\node[rednode] at (5,0) (consumern) {Consumer\\n};
\node[rednode] at (0,1.25) (source) {Packet\\Source};
\node[bluenode] at (2,1.25) (sourcechan) {Source\\Queue};
\node[rednode] at (5,2.5) (consumer1) {Consumer\\1};
\node[rednode] at (5,0) (consumern) {Consumer\\n};
\node[rednode] at (8,2.5) (producer1) {Producer\\1};
\node[rednode] at (8,0) (producern) {Producer\\n};
\node[bluenode] at (11,1.25) (sinkchan) {Sink\\Queue};
\node[rednode] at (13,1.25) (sink) {Packet\\Sink};
\node[rednode] at (8,2.5) (producer1) {Producer\\1};
\node[rednode] at (8,0) (producern) {Producer\\n};
\node[bluenode] at (11,1.25) (sinkchan) {Sink\\Queue};
\node[rednode] at (13,1.25) (sink) {Packet\\Sink};
% Ellipses
\path (consumer1) -- (consumern) node [black, font=\huge, midway, sloped] {$\dots$};
\path (producer1) -- (producern) node [black, font=\huge, midway, sloped] {$\dots$};
% Arrows
\draw[->] (source.east) -- (sourcechan.west);
\draw[->] (sourcechan.east) -- (consumer1.west);
\draw[->] (sourcechan.east) -- (consumern.west);
\draw[->] (source.east) -- (sourcechan.west);
\draw[->] (sourcechan.east) -- (consumer1.west);
\draw[->] (sourcechan.east) -- (consumern.west);
\draw[->] (producer1.east) -- (sinkchan.west);
\draw[->] (producern.east) -- (sinkchan.west);
\draw[->] (sinkchan.east) -- (sink.west);
\draw[->] (producer1.east) -- (sinkchan.west);
\draw[->] (producern.east) -- (sinkchan.west);
\draw[->] (sinkchan.east) -- (sink.west);
\end{tikzpicture}
\caption{Packet flow within proxy start method.}