0
我試圖通過刪除job
停止運行apscheduler並完全關閉它!蟒蛇apscheduler不關閉
他們沒有工作,我的功能expire_data
仍然被觸發
def process_bin(value):
print "Stored:",pastebin.value
print "Will expire in",pastebin_duration.value,"seconds!"
if pastebin_duration>=0:
scheduler = BlockingScheduler()
job=scheduler.add_job(expire_data, 'interval', seconds=5)
scheduler.start()
job.remove()
scheduler.shutdown()
def expire_data():
print "Delete data!"
我怎麼能阻止它?
請標記*無論*蟒蛇2或3 – tambre
對不起,固定,Python 2.7版! –
您能否粘貼一個可以重現問題的完整示例? –