Ruby 中使用 Fiber 的状态机?

发布于 2024-09-25 01:31:05 字数 152 浏览 8 评论 0原文

我正在尝试了解 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 Fibers

thanks :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灯下孤影 2024-10-02 01:31:05

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)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文