search

Home  >  Q&A  >  body text

python - apscheduler 为什么每次运行的线程名称都不一样?是不是会不断创建新的线程?

import  threading
from apscheduler.scheduler import Scheduler
schedudler = Scheduler(daemonic = False)

@schedudler.cron_schedule(second='*/10', minute='*', day_of_week='0-6', hour='7-21')
def send_toeflword():
    text = 'Hello World'
    print text
    print threading.current_thread().name
schedudler.start()

打印结果:

Hello World
Thread-1
Hello World
Thread-2
Hello World
Thread-3
Hello World
Thread-4
Hello World
Thread-5
Hello World
Thread-6
Hello World
Thread-7
Hello World
Thread-8
Hello World
Thread-9
ringa_leeringa_lee2837 days ago711

reply all(1)I'll reply

  • 阿神

    阿神2017-04-18 09:22:46

    Sorry, after looking at it, it seems that the previous one will be destroyed automatically.

    reply
    0
  • Cancelreply