我正在查看https://github.com/jmettraux/rufus-scheduler,它可以很好地让我安排和连锁活动。
但我希望事件在第 10 次或 24 天后停止。
我该怎么做呢?
我的情况是:
运行一个脚本,该脚本根据间隔创建重复作业,然后在给定日期或事件后停止。
这就是我所做的。
def run_schedule(url, count, method, interval)
puts "running scheduler"
scheduler = Rufus::Scheduler.new
scheduler.every interval do
binding.pry
attack_loop(url, count, method)
end
end
我正在测试我的网站,并希望attack_loop
在内存中安排在时间间隔内运行。
但它似乎从来没有打过binding.pry
线。