What is the difference between Synchronous sockets and
asynchronous sockets?
Answers were Sorted based on User's Feedback
Answer / mms zubeir
The above answer is not relevant to the question.
The simple answer is, asynchronous sockets don't block the
other parts of application while carrying a request, but
the synchronous operation blocks the application during
processing.
There are many like this, but this is the basic difference.
| Is This Answer Correct ? | 51 Yes | 2 No |
Answer / kirankumar
Class CSocket derives from CAsyncSocket and inherits its
encapsulation of the Windows Sockets API. A CSocket object
represents a higher level of abstraction of the Windows
Sockets API than that of a CAsyncSocket object. CSocket
works with classes CSocketFile and CArchive to manage the
sending and receiving of data.
| Is This Answer Correct ? | 4 Yes | 26 No |
What is the base class for MFC Framework ?
what is the use of CCmdTarget?
What is the command routing in MFC framework?
What view class enables you to use an edit control as a view?
In SDI how many view's are attached to document object and in MDI how many view's are attached to Document object?
if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first
What is the difference between ASSERT and VERIFY?
What is #progma and where it is used?
Will there be any difference in the image buffer size if it is loaded in from CString to LPTSTR using GetBuffer()? lptstr = string.GetBuffer(0);
Explain StretchBlt and BitBlt
1)How to change the size of a button at run time ?
What is the use of message map ?