Re: [asio-users] Send / receive separately question
Brought to you by:
chris_kohlhoff
From: Torsten R. <Torsten@Robitzki.de> - 2017-10-23 11:40:10
|
> Am 23.10.2017 um 13:37 schrieb Michael IV <exp...@gm...>: > > Which means,I can call async read and async write,chaining each of them within their respective callbacks as suggested in SO answer, with no worries? Jep, when you queue a write, the callback will be called, when the data is written, when you queue a read, that callback is called when data is actually read. All those callbacks get called from within io_service::run(). |