如果没有事件发生则终止 gen_fsm

发布于 2024-12-15 11:04:18 字数 166 浏览 2 评论 0原文

我希望我的 FSM 在每个州的指定时间后没有发生任何事件时终止。

只有在 FSM 创建后没有事件的情况下,我才能通过在 init 回调中指定超时值来实现这样的场景,但我希望此功能也适用于所有状态。

任何简单的&快速解决方案?

最好的问候

马特

I want my FSM to terminate any time event doesn't come after specified amout of time in every state.

I can achieve such a scenario only in case there is no event after FSM creation by specifing timeout value in init callback, but I would like to have this functionality working for all of the states as well.

Any easy & quick solution?

Best Regards

Matt

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

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

发布评论

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

评论(1

要走就滚别墨迹 2024-12-22 11:04:18

您可以在每个状态 {next_state, NextStateName, NewStateData, Timeout} 的返回元组中设置超时。有关更多详细信息,请参阅 gen_fsm 文档。但它仅适用于 gen_fsm 中没有任何传入消息的情况,因此仅当您希望在可能没有人与之通信时终止进程时才适用。如果您想要硬限制(例如协议),您应该使用 erlang :send_after/3erlang:start_timer/3 并处理计时器终止等。

You can set timeout in return tuple in each state {next_state, NextStateName, NewStateData, Timeout}. See gen_fsm documentation for more details. But it works only for case there is not any incoming messages in gen_fsm so it is suitable only if for example you would like terminate process when probably nobody is communicating with it. If you would like hard limits (for protocols for example) you should use erlang:send_after/3 or erlang:start_timer/3 and handle also timer termination and so.

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