Ruby 中使用 Fiber 的状态机?
我正在尝试了解 Ruby 1.9 中新的 Fiber 类,并且我读到 Fibers(和协程)的更常见应用程序之一是在状态机中。
不幸的是,我的 Fiber -fu 还不够,所以我希望你们中的一个人可以向我展示一个使用 Fiber 的简单状态机示例,
谢谢:)
I'm trying to get a handle on the new Fiber
class in Ruby 1.9 and I read that one of the more common applications for Fibers
(and coroutines) is in state machines.
Unfortunately my Fiber
-fu isn't up to much, so I was hoping one of you could show me a simple statemachine example in Ruby using Fiber
s
thanks :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http://github.com/rdp/ruby_tutorials_core/wiki/enumerator 向您展示如何包裹一个养活另一个养活另一个的人。
要将其用作状态机,我想它将每个“状态”分成自己的光纤,例如
AAAB(在输入 x 上)=> AAAB(每个 [A,A,A,b] 应该是它自己的光纤,并且只是传递输入直到到达最后一个)
http://github.com/rdp/ruby_tutorials_core/wiki/enumerator shows you how to wrap one that feeds another that feeds another.
To use this as a statemachine, I suppose it's splitting each "state" into its own fiber, like
AAAB (on input x) => AAAB (each [A,A,A,b] should be its own fiber, and just pass off input until it reaches the last)