将现有的异步方法包装到 TPL 兼容方法中

发布于 2024-12-25 12:10:21 字数 324 浏览 2 评论 0原文

如何将接受回调函数作为参数的现有异步方法包装到任务并行库兼容方法中?

// Existing method
void DoAsync(Action<string> callback) {
    ...
}

// The desired method should have similar prototype
Task<string> DoAsync() {
    // Internally this method should call existing
    // version of DoAsync method (see above)
}

How to wrap existing async method that accepts callback function as parameter into Task Parallel Library-compatible method?

// Existing method
void DoAsync(Action<string> callback) {
    ...
}

// The desired method should have similar prototype
Task<string> DoAsync() {
    // Internally this method should call existing
    // version of DoAsync method (see above)
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

话少情深 2025-01-01 12:10:21

我假设您现有的 DoAsync 方法将异步运行。

在这种情况下,您可以这样包装它:

Task<string> DoAsyncTask()
{
  var tcs = new TaskCompletionSource<string>();
  DoAsync(result => tcs.TrySetResult(result));
  return tcs.Task;
}

我看不到您现有的 DoAsync 方法如何报告异步错误。如有必要,您可以使用 TaskCompletionSource.TrySetException 报告异步错误。

I'm assuming that your existing DoAsync method will run asynchronously.

In that case, you can wrap it like this:

Task<string> DoAsyncTask()
{
  var tcs = new TaskCompletionSource<string>();
  DoAsync(result => tcs.TrySetResult(result));
  return tcs.Task;
}

I don't see how your existing DoAsync method reports asynchronous errors. You can use TaskCompletionSource<T>.TrySetException to report an asynchronous error if necessary.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文