What are Async Sockets?
What are Async Sockets? How are the开发者_开发问答y different from normal sockets (Blocking and Non-Blocking)?
Any pointers in that direction or any links to tutorials will be helpful.
Thanks.
There are three ways to communicate with sockets in async way:
Open regular socket, but do not read from it (because
read()
blocks) until you know there it something to be read. You can useselect()
orpoll()
to check whether there are data to read from socket(s), and if there is something, read it, asread()
won't block.Switch socket to non-blocking I/O, by setting
O_NONBLOCK
flag withfcntl()
function. In this caseread()
won't block.Set socket's
O_ASYNC
flag usingFIOASYNC
option ofioctl()
(see man 7 socket for details). In this case you will receiveSIGIO
signal when there is something to read from socket.
Third approach is async socket.
Comparison of the following five different models for I/O in UNIX Network Programming: The sockets networking API would be helpful:
Blocking
Nonblocking
I/O multiplexing
Signal-driven I/O
Asynchronous I/O
If a server uses a synchronous socket, while it is waiting for data from the client, its main thread is blocked, so the server won't be doing anything... that is bad if you have multiple clients connecting. In an asynchronous socket, you CAN do other stuff while waiting for the client to send data to you, so now you CAN have multiple clients connecting to you
Synchronous uses a function like receive() which blocks until it gets a message
Asynchronous has beginReceive() endReceive() or similar functions. It uses callbacks, when a message is received, the callback is invoked
精彩评论