gpt4 book ai didi

c# - 从异步编程模型 (APM) 转向基于任务的异步模式 (TAP)

转载 作者:太空狗 更新时间:2023-10-29 18:11:59 25 4
gpt4 key购买 nike

.NET 中有很多类使用旧的 Asynchronous Programming Model (APM)“不再推荐用于新开发”。 APM 使用 Begin/End 方法对,End 方法采用 IAsyncResult。对象作为参数。其中一个类别是 TcpClient ,您可以使用它进行异步连接,如下所示:

private void SomeMethod()
{
this.tcpClient = new TcpClient();
IAsyncResult result = this.tcpClient.BeginConnect(ip, port, EndConnect, null);
}

private void EndConnect(IAsyncResult asyncResult)
{
this.tcpClient.EndConnect(asyncResult);

// ... do stuff ...
}

Task-based Asynchronous Pattern (TAP)是一种更现代的异步编程形式,可通过使用 asyncawait 关键字来促进。

因此,如果您有一个像 TcpClient 这样的类,它使用 APM 模型并且不公开任何任务,那么如何调整它的异步方法以适应 TAP,以便它们可以与 async 一起使用/等待?

最佳答案

in the documentation you linked to .

作为一般规则,您应该首先查看或询问直接支持 TAP 的更新 API。几乎所有 BCL 类都已更新为支持 TAP,少数(例如 HttpWebRequest)已替换为 TAP 替代品(例如,HttpClient)。在这种情况下,没有 TAP TcpClient 等效项,因此最好将它们包装起来。

如果您确实在 APM 包装器上编写 TAP,我建议使用简单的扩展方法:

public static Task ConnectTaskAsync(this TcpClient client, IPAddress address, int port)
{
return Task.Factory.FromAsync(client.BeginConnect, client.EndConnect, address, port, null);
}

这为您提供了一种自然的方式来使用它们,并将您的“互操作”代码与包含实际逻辑的任何代码分开:

async Task SomeMethodAsync()
{
this.tcpClient = new TcpClient();
await this.tcpClient.ConnectTaskAsync(ip, port);
// ... do stuff ...
}

关于c# - 从异步编程模型 (APM) 转向基于任务的异步模式 (TAP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23437821/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com