Hello!
My code sends UDP packets using async_send_to. If all packets are
successfully sent, are their handlers called in the same order as the
async_send_to calls happened? I mean if my code looks something like
this:
socket.async_send_to(buffer1, destination, handler1);
socket.async_send_to(buffer2, destination, handler2);
Is it guaranteed that handler2 is always called after handler1?
_______________________________________________
Boost-users mailing list
Boost-users@lists.boost.org
http://lists.boost.org/mailman/listinfo.cgi/boost-users