1chooo / anon-chat

⚡ NCU-CE3007-2023-Fall-Computer Network Project: A monorepo of the realtime Chat App with React frontend and GO backend, utilizing socket-based communication over TCP.
https://1chooo.github.io/anon-chat/
MIT License
1 stars 0 forks source link

Queuing Delay for multiple packets #5

Open RobinHsieh opened 10 months ago

RobinHsieh commented 10 months ago

For example, if 10 packets arrive at an empty queue at the same time, the first packet transmitted will suffer no queuing delay, while the last packet transmitted will suffer a relatively large queuing delay (while it waits for the other nine packets to be transmitted).

Therefore, total N packets, queuing delay of $N_{th}$ packets = $\frac{(N-1)L}{R}$.