寻找一种优雅的方式从 IEnumerable 加载消息
我的要求是在 x 秒间隔后循环 IEnumerable 集合中的消息。 实际上我有一个 IEnumerable
我想到的一种解决方案是使用调度程序计时器。还有其他方法可以做同样的事情吗?
My requirement is to cycle the messages from the IEnumerable
collection after say x sec interval.
Actually I have a IEnumerable<Message>
which have say 5 messages and when the screen (WPF) loads I'm showing the first message from the collection and next message will be shown say after x sec and so on.
One solution comes to my mind is to use the dispatcher timer. Any other way to do that same thing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
AFAIK 计时器正是为此目的而设计的,并且在其中表现良好。
为什么还要别的东西?
AFAIK timers are designed exactly for this purpose and perform well in it.
Why want anything else?
您可以使用反应式扩展来执行此操作。像这样的东西:
You can use reactive extensions to do this. Something like:
这个答案与 Ankur 的思路一致——使用 Reactive 扩展生成基于计时器的可观察序列:
当然,效果与 DispatcherTimer 相同,但这里的语法更清晰,可以在每个计时器滴答时枚举一次。
This answer is along the lines of Ankur's -- use Reactive extensions to generate a timer-based observable sequence:
Of course, the effect is the same as a DispatcherTimer, but the syntax here is cleaner for enumerating once on each timer tick.