feat: Async framework submit on strand/ctx (#2751)

This commit is contained in:
Alex Kremer
2025-11-04 19:14:31 +00:00
committed by GitHub
parent d6ab2cc1e4
commit 6d79dd6b2b
14 changed files with 296 additions and 110 deletions

View File

@@ -124,6 +124,6 @@ struct FakeRetryPolicy {
void
retry(Fn&& fn)
{
fn();
std::invoke(std::forward<decltype(fn)>(fn));
}
};