如何在 Opa 中执行延迟循环?
Opa 中存在什么构造来执行延迟循环;例如,每 10 秒执行一个函数。
以聊天室教程为例 - 如果我想要一个机器人在那里,那么我如何让它每 10 秒向其他用户写一条语句?
What construct exists in Opa to perform a delayed loop; for instance, executing a function every 10 seconds.
Take the chatroom tutorial - if I wanted a bot in there then how would I have it write a statement every 10 seconds to the other users?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在寻找的是
调度程序
模块。特别是:Scheduler.timer
函数,或调度程序。 make_timer
如果您需要对计时器进行更多控制(例如停止或更改间隔)。What you are looking for is the
Scheduler
module. In particular the:Scheduler.timer
function, orScheduler.make_timer
if you need more control over your timer (like stopping or changing the interval).