Skip to content

Commit 0f56460

Browse files
committed
reference docs (1)
1 parent 6e7c42b commit 0f56460

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

include/boost/redis/connection.hpp

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,11 @@ class basic_connection {
260260
return impl_.async_exec(req, any_adapter(resp), std::forward<CompletionToken>(token));
261261
}
262262

263-
263+
/** @copydoc async_exec
264+
*
265+
* @details This function uses the type-erased @ref any_adapter class, which
266+
* encapsulates a reference to a response object.
267+
*/
264268
template <class CompletionToken = asio::default_completion_token_t<executor_type>>
265269
auto
266270
async_exec(
@@ -409,6 +413,7 @@ class connection {
409413
return async_exec(req, any_adapter(resp), std::move(token));
410414
}
411415

416+
/// Calls `boost::redis::basic_connection::async_exec`.
412417
template <class CompletionToken>
413418
auto async_exec(request const& req, any_adapter adapter, CompletionToken token)
414419
{

0 commit comments

Comments
 (0)