In my application I have to send about 10 kb/s per connection. All packets are put in a std::deque
. One thread iterates over the deque and sends packet data via asio::async_write
.
My question is how much connections can I handle simultaneously in one thread? Can I send say 20 Mbytes/s?