Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
framework? boost? Qt? raw Windows API? linux? Tell more please. – Hernán Jun 10 '10 at 18:22

2 Answers

up vote 3 down vote accepted

Look into non-blocking sockets and polling APIs like select(2)/poll(2)/epoll(4)/kqueue(2).

Specifically in C++, look into boost::asio.

share|improve this answer
Non-blocking sockets should be enough if you handle the case that recv() does not read any data (which is easy). Using select() or something similar has its advantages but also drawbacks. It's up to you to decide what suits your needs better. – PeterK Jun 11 '10 at 16:03

Depending on what you're doing, non-blocking I/O with select may be the answer.

Take a look at this tutorial.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.