Skip to content

1.3.0

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 24 Jul 18:34
· 6 commits to master since this release
b29732f
  • Added Scheduler.wait_and_close() to allow a grace period for tasks to complete
    before closing the scheduler.
  • Added Scheduler.shield() as an alternative to asyncio.shield() which tracks
    the shielded task, thus ensuring shielded tasks are given time to complete on application
    shutdown (when used with Scheduler.wait_and_close()).
  • Added support for async with syntax which will automatically call
    Scheduler.wait_and_close() when exiting the context.