2
0
mirror of https://github.com/boostorg/redis.git synced 2026-02-22 15:42:26 +00:00

More improvements in the examples.

This commit is contained in:
Marcelo Zimbres
2021-11-21 21:00:22 +01:00
parent a3ff680847
commit 4189f7dc56
21 changed files with 455 additions and 529 deletions

View File

@@ -33,7 +33,7 @@ void prepare_next(std::queue<request>& reqs)
reqs.push({});
}
/** The function that processes the response has been factored out of
/* The function that processes the response has been factored out of
* the coroutine to simplify application logic.
*/
void process_response(std::queue<request>& reqs, response& resp)
@@ -85,3 +85,5 @@ int main()
co_spawn(ioc, ping(), net::detached);
ioc.run();
}
/// \example basic3.cpp