中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

在python里如何創建一個任務

發布時間:2020-07-30 14:30:09 來源:億速云 閱讀:194 作者:小豬 欄目:開發技術

小編這次要給大家分享的是在python里如何創建一個任務,文章內容豐富,感興趣的小伙伴可以來了解一下,希望大家閱讀完這篇文章之后能夠有所收獲。

與事件循環進行交互,最基本的方式就是任務,任務封裝了協程和自動跟蹤它的狀態。任務是Future類的子類,所以其它協程可以等待任務完成,或當這些任務完成獲取返回結果。

在這里通過create_task()函數來創建一個任務實例,然后事件循環就運行這個任務,直到這個任務返回為止:

import asyncio
 
async def task_func():
  print('in task_func')
  return 'the result'
 
async def main(loop):
  print('creating task')
  task = loop.create_task(task_func())
  print('waiting for {!r}'.format(task))
  return_value = await task
  print('task completed {!r}'.format(task))
  print('return value: {!r}'.format(return_value))
 
event_loop = asyncio.get_event_loop()
try:
  event_loop.run_until_complete(main(event_loop))
finally:
  event_loop.close()

結果輸出如下:

creating task
waiting for <Task pending coro=<task_func() running at D:\work\csdn\python_Game1\example\asyncio_create_task.py:4>>
in task_func
task completed <Task finished coro=<task_func() done, defined at D:\work\csdn\python_Game1\example\asyncio_create_task.py:4> result='the result'>
return value: 'the result'

補充知識:python里創建任務執行一半時取消任務執行

下例子來演示創建任務執行一半時取消任務執行,這時會拋出異常CancelledError,同時也提供了一個機會來刪除占用資源等等:

import asyncio
 
async def task_func():
  print('in task_func, sleeping')
  try:
    await asyncio.sleep(1)
  except asyncio.CancelledError:
    print('task_func was canceled')
    raise
  return 'the result'
 
def task_canceller(t):
  print('in task_canceller')
  t.cancel()
  print('canceled the task')
 
async def main(loop):
  print('creating task')
  task = loop.create_task(task_func())
  loop.call_soon(task_canceller, task)
  try:
    await task
  except asyncio.CancelledError:
    print('main() also sees task as canceled')
 
event_loop = asyncio.get_event_loop()
try:
  event_loop.run_until_complete(main(event_loop))
finally:
  event_loop.close()

結果輸出如下:

creating task
in task_func, sleeping
in task_canceller
canceled the task
task_func was canceled
main() also sees task as canceled

看完這篇關于在python里如何創建一個任務的文章,如果覺得文章內容寫得不錯的話,可以把它分享出去給更多人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

涞水县| 剑阁县| 桐梓县| 句容市| 九龙县| 龙岩市| 姚安县| 即墨市| 钦州市| 勐海县| 邹平县| 康定县| 永春县| 伊金霍洛旗| 白银市| 天镇县| 台前县| 措美县| 开鲁县| 顺昌县| 晴隆县| 沧源| 许昌市| 夏河县| 宁河县| 海门市| 四会市| 拜城县| 岚皋县| 潞西市| 华宁县| 怀集县| 青田县| 乌兰县| 潮州市| 白城市| 华安县| 宾川县| 克东县| 大英县| 太仓市|