Keeping socket open to send files on timer calls?
- by user3704768
I'm writing a program that requires an image to be fetched from a remote server every 10 milliseconds or so, as that's how often the image is updated. My current method calls a timer to grab the image, but it encounters Socket Closed errors all the time, and sometimes does not work at all.
How can I fix my methods to keep the socket open the whole…