I have a limited Bandwidth 512 Kbps Download 368 Kbps Upload
I am sending 40 byte UDP packets at regular Intervals of 10ms in loop
with Thread.sleep(10) statement.
While receiving packets (UDP) can be of size 0-1500 bytes and can come at any time in any quantity which i receive with
channel.receive(); in a while(true){} loop .Channel is in Blocking mode.
I think i am missing packets with this code.
How can i prevent packet loss due to low download speed.