File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,11 @@ class basic_connection {
260
260
return impl_.async_exec (req, any_adapter (resp), std::forward<CompletionToken>(token));
261
261
}
262
262
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
+ */
264
268
template <class CompletionToken = asio::default_completion_token_t <executor_type>>
265
269
auto
266
270
async_exec (
@@ -409,6 +413,7 @@ class connection {
409
413
return async_exec (req, any_adapter (resp), std::move (token));
410
414
}
411
415
416
+ // / Calls `boost::redis::basic_connection::async_exec`.
412
417
template <class CompletionToken >
413
418
auto async_exec (request const & req, any_adapter adapter, CompletionToken token)
414
419
{
You can’t perform that action at this time.
0 commit comments