I'm currently using a thread to handle Connect and Send calls asynchronously. This is all working fine, but now I want to make receiving asynchronous too. How should I receive data without pausing the whole queue while waiting for data? The only solution I can think of right now is a second thread.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Look into non-blocking sockets and polling APIs like Specifically in C++, look into |
|||
|
|
Depending on what you're doing, non-blocking I/O with select may be the answer. |
|||
|
|