反应式扩展 - 将项目从一个集合泵送到另一个集合
我有一个 IEnumerable 集合,并希望以一秒的间隔将项目泵入另一个集合。我该如何实现这一目标?有很多新的扩展方法。我还不知道在哪里使用什么。
I have an IEnumerable collection and want to pump items into another collection at one second itervals. How do I achieve this? There are so many new extension methods. I don't what to use where yet.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是您可以做到的一种方法。请注意,我并不是说这是最“Rx”的方式(我对 Rx 的经验仍然有限)。
进而:
Here's one way you could do it. I'm not saying it's the most "Rx" way, mind you (my experience with Rx is still somewhat limited).
And then: