When should I use asynchronous operations in boost::asio instead of synchronous operations in seperate threads?
|
|
|
|
|
|
|
Does the Rationale section help?
|
||
|
|
|
|
I would strongly urge you to use a asynchronous approach whenever possible. A asynchronous call doesn't necessarily create a thread, so by sticking with an asynchronous operation you may reduce the overhead that is associated with threads. In addition threads are usually harder to develop and maintain. Hope it helps. |
||
|
|
