gen_server:每 X 秒调用一次
gen_server 的状态是一个列表,应该每 X 秒处理一次。因此,我需要每X秒执行一次handle_call({process},State)。
每X秒执行一次handle_call的最佳方法是什么?
The Status of the gen_server is a list and should be processed once every X seconds. Therefore, I need to execute handle_call({process},State) every X seconds.
What is the best way to have a handle_call executed every X seconds?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“定时器”模块可以解决您的问题。例如,在 otp hehaviour 实现模块中,
“Timer” module can solve your problem. For example, In otp hehaviour implemention module,