Rufus::Scheduler join 在 ruby 中最后无法退出
我使用Rufus::Scheduler来调度任务,代码如下:
class Scheduler
def self.run
scheduler = Rufus::Scheduler.start_new
job = scheduler.in '5s', A.new
scheduler.join
end
class A
def call(job)
puts "xxxxxx"
end
end
end
Scheduler.run
运行代码后,打印'xxxx',但运行call方法后,join无法自行退出,总是挂起。
有没有办法在等待完成作业后退出连接?感谢你。
i use Rufus::Scheduler to schedule a task, the code is listed below:
class Scheduler
def self.run
scheduler = Rufus::Scheduler.start_new
job = scheduler.in '5s', A.new
scheduler.join
end
class A
def call(job)
puts "xxxxxx"
end
end
end
Scheduler.run
after running the code, it has print 'xxxx', but after running the call method, the join can not exit by itself and always hang-up.
is there some way to exit the join after waiting to finish the job? thank u.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
调度程序旨在“永远”运行。调用“join”会加入调度程序线程,并且仅在线程终止时退出。
您应该重新考虑您的代码,您正在尝试像使用螺丝刀一样使用锤子。
The scheduler is meant to run "forever". Calling "join" joins the scheduler thread and only exits when the thread dies.
You should reconsider your code, you're trying to use a hammer like a screwdriver.
使用普通螺纹即可达到要求。
Use plain Thread can reach the requirement.