聊一聊C# 8.0中的await foreach使用
asyncstreamsincshaper8.0
很开心今天能与大家一起聊聊c# 8.0中的新特性-async streams,一般人通常看到这个词表情是这样.
简单说,其实就是c# 8.0中支持await foreach.
或者说,c# 8.0中支持异步返回枚举类型async task<ienumerable<t>>.
好吧,还不懂?good,这篇文章就是为你写的,看完这篇文章,你就能明白它的神奇之处了.
为什么写这篇文章
async streams这个功能已经发布很久了,在去年的build 2018 the future of c#就有演示,最近vs 2019发布,在该版本的release notes中,我再次看到了这个新特性,因为对异步编程不太熟悉,所以借着这个机会,学习新特性的同时,把异步编程重温一遍.
本文内容,参考了bassam alugili在infoq中发表的async streams in c# 8,撰写本博客前我已联系上该作者并得到他支持.
async / await
c# 5 引入了 async/await,用以提高用户界面响应能力和对 web 资源的访问能力。换句话说,异步方法用于执行不阻塞线程并返回一个标量结果的异步操作。
微软多次尝试简化异步操作,因为 async/await 模式易于理解,所以在开发人员当中获得了良好的认可。
详见the task asynchronous programming model in c#
常规示例
要了解问什么需要async streams,我们先来看看这样的一个示例,求出5以内的整数的和.
static int sumfromonetocount(int count) { consoleext.writeline("sumfromonetocount called!"); var sum = 0; for (var i = 0; i <= count; i++) { sum = sum + i; } return sum; }
调用方法.
static void main(string[] args) { const int count = 5; consoleext.writeline($"starting the application with count: {count}!"); consoleext.writeline("classic sum starting."); consoleext.writeline($"classic sum result: {sumfromonetocount(count)}"); consoleext.writeline("classic sum completed."); consoleext.writeline("################################################"); }
输出结果.
可以看到,整个过程就一个线程id为1的线程自上而下执行,这是最基础的做法.
yield return
接下来,我们使用运算符使得这个方法编程延迟加载,如下所示.
static ienumerable<int> sumfromonetocountyield(int count) { consoleext.writeline("sumfromonetocountyield called!"); var sum = 0; for (var i = 0; i <= count; i++) { sum = sum + i; yield return sum; } }
主函数
static void main(string[] args) { const int count = 5; consoleext.writeline("sum with yield starting."); foreach (var i in sumfromonetocountyield(count)) { consoleext.writeline($"yield sum: {i}"); } consoleext.writeline("sum with yield completed."); consoleext.writeline("################################################"); consoleext.writeline(environment.newline); }
运行结果如下.
正如你在输出窗口中看到的那样,结果被分成几个部分返回,而不是作为一个值返回。以上显示的累积结果被称为惰性枚举。但是,仍然存在一个问题,即 sum 方法阻塞了代码的执行。如果你查看线程id,可以看到所有东西都在主线程1中运行,这显然不完美,继续改造.
async return
我们试着将async用于sumfromonetocount方法(没有yield关键字).
static async task<int> sumfromonetocountasync(int count) { consoleext.writeline("sumfromonetocountasync called!"); var result = await task.run(() => { var sum = 0; for (var i = 0; i <= count; i++) { sum = sum + i; } return sum; }); return result; }
主函数.
static async task main(string[] args) { const int count = 5; consoleext.writeline("async example starting."); // sum runs asynchronously! not enough. we need sum to be async with lazy behavior. var result = await sumfromonetocountasync(count); consoleext.writeline("async result: " + result); consoleext.writeline("async completed."); consoleext.writeline("################################################"); consoleext.writeline(environment.newline); }
运行结果.
我们可以看到计算过程是在另一个线程中运行,但结果仍然是作为一个值返回!任然不完美.
如果我们想把惰性枚举(yield return)与异步方法结合起来,即返回task<ienumerable,这怎么实现呢?
task<ienumerable>
我们根据假设把代码改造一遍,使用task<ienumerable<t>>来进行计算.
可以看到,直接出现错误.
iasyncenumerable
其实,在c# 8.0中task<ienumerable>这种组合称为iasyncenumerable。这个新功能为我们提供了一种很好的技术来解决拉异步延迟加载的问题,例如从网站下载数据或从文件或数据库中读取记录,与 ienumerable 和 ienumerator 类似,async streams 提供了两个新接口 iasyncenumerable 和 iasyncenumerator,定义如下:
public interface iasyncenumerable<out t> { iasyncenumerator<t> getasyncenumerator(); } public interface iasyncenumerator<out t> : iasyncdisposable { task<bool> movenextasync(); t current { get; } } // async streams feature 可以被异步销毁 public interface iasyncdisposable { task diskposeasync(); }
asyncstream
下面,我们就来见识一下asyncstrema的威力,我们使用iasyncenumerable来对函数进行改造,如下.
static async task consumeasyncsumseqeunc(iasyncenumerable<int> sequence) { consoleext.writelineasync("consumeasyncsumseqeunc called"); await foreach (var value in sequence) { consoleext.writelineasync($"consuming the value: {value}"); // simulate some delay! await task.delay(timespan.fromseconds(1)); }; } private static async iasyncenumerable<int> produceasyncsumseqeunc(int count) { consoleext.writelineasync("produceasyncsumseqeunc called"); var sum = 0; for (var i = 0; i <= count; i++) { sum = sum + i; // simulate some delay! await task.delay(timespan.fromseconds(0.5)); yield return sum; } }
主函数.
static async task main(string[] args) { const int count = 5; consoleext.writeline("starting async streams demo!"); // start a new task. used to produce async sequence of data! iasyncenumerable<int> pullbasedasyncsequence = produceasyncsumseqeunc(count); // start another task; used to consume the async data sequence! var consumingtask = task.run(() => consumeasyncsumseqeunc(pullbasedasyncsequence)); await task.delay(timespan.fromseconds(3)); consoleext.writelineasync("x#x#x#x#x#x#x#x#x#x# doing some other work x#x#x#x#x#x#x#x#x#x#"); // just for demo! wait until the task is finished! await consumingtask; consoleext.writelineasync("async streams demo done!"); }
如果一切顺利,那么就能看到这样的运行结果了.
最后,看到这就是我们想要的结果,在枚举的基础上,进行了异步迭代.
可以看到,整个计算过程并没有造成主线程的阻塞,其中,值得重点关注的是红色方框区域的线程5!线程5!线程5!线程5在请求下一个结果后,并没有等待结果返回,而是去了main()函数中做了别的事情,等待请求的结果返回后,线程5又接着执行foreach中任务.
client/server的异步拉取
如果还没有理解async streams的好处,那么我借助客户端 / 服务器端架构是演示这一功能优势的绝佳方法。
同步调用
客户端向服务器端发送请求,客户端必须等待(客户端被阻塞),直到服务器端做出响应.
示例中yield return就是以这种方式执行的,所以整个过程只有一个线程即线程1在处理.
异步调用
客户端发出数据块请求,然后继续执行其他操作。一旦数据块到达,客户端就处理接收到的数据块并询问下一个数据块,依此类推,直到达到最后一个数据块为止。这正是 async streams 想法的来源。
最后一个示例就是以这种方式执行的,线程5询问下一个数据后并没有等待结果返回,而是去做了main()函数中的别的事情,数据到达后,线程5又继续处理foreach中的任务.
tips
如果你使用的是.net core 2.2及以下版本,会遇到这样的报错.
需要安装.net core 3.0 preview的sdk(截至至博客撰写日期4月9日,.net core sdk最新版本为3.0.100-preview3-010431),安装好sdk后,如果你是vs 2019正式版,可能无法选择3.0的与预览版,听过只有vs 2019 preview才支持.net core 3.0的预览版.
总结
我们已经讨论过 async streams,它是一种出色的异步拉取技术,可用于进行生成多个值的异步计算。
async streams 背后的编程概念是异步拉取模型。我们请求获取序列的下一个元素,并最终得到答复。async streams 提供了一种处理异步数据源的绝佳方法,希望对大家能够有所帮助。
文章中涉及的所有代码已保存在我的github中,请尽情享用!
https://github.com/liuzhenyulive/asyncstreamsincshaper8.0
致谢
之前一直感觉国外的大师级开发者遥不可及甚至高高在上,在遇到bassam alugili之后,我才真正感受到技术交流没有高低贵贱,正如他对我说的 the most important thing in this world is sharing the knowledge!
thank you,i will keep going!!
参考文献: async streams in c# 8
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 可乐鸡翅放蒜吗,可乐鸡翅怎么做好吃
下一篇: 如何调理宝宝脾胃,这些可以有效地帮助他们