python - How to persist scheduled jobs using APScheduler until they finish completely? -


i'm using apscheduler python 2.7.6. i'm using blockingscheduler store scheduled jobs , sqlalchemy persistent database.

i want schedule jobs , guarantee finish (function reach last line). working fine, see when job started, it's removed database, when job did not finish entire method.

note: obviously, developed jobs not have state , can re-executed in next program executions. should not issue discussed in question.

what best way persist job until complete function/method executed using apscheduler?

i had similar problem, , able resolve using background scheduler instead of blocking scheduler.


Comments

Popular posts from this blog

javascript - Using jquery append to add option values into a select element not working -

Android soft keyboard reverts to default keyboard on orientation change -

Rendering JButton to get the JCheckBox behavior in a JTable by using images does not update my table -