답: 병발할 수 있습니다.선물나중에 비동기식 IO로 변환됩니다.장래대답: 병발할 수 있습니다.선물나중에 비동기식 IO로 변환됩니다.장래
대답: 병발할 수 있습니다.선물나중에 비동기식 IO로 변환됩니다.장래
20년 1월 31일
1
'병발 미래에서 비동기 미래로'부분에 대해 나는 실용 프로그램을 사용했다.from typing import List, Any
from concurrent.futures.thread import ThreadPoolExecutor
import asyncio
class AsyncThreadPool(ThreadPoolExecutor):
_futures: List[asyncio.Future]
_loop: asyncio.AbstractEventLoop
def __init__(self, max_workers=None):
super().__init__(max_workers)
self._futures = []
def queue(self, fn):
self._loop = asyncio.get_event_loop()
fut = self._loop.create_future()
self._futures.append(fut)
self.submit(self._entry, fn,
…
Open Full Answer
Reference
이 문제에 관하여(답: 병발할 수 있습니다.선물나중에 비동기식 IO로 변환됩니다.장래대답: 병발할 수 있습니다.선물나중에 비동기식 IO로 변환됩니다.장래), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/lamnguyenx/answer-can-concurrent-futures-future-be-converted-to-asyncio-future-1p19
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
from typing import List, Any
from concurrent.futures.thread import ThreadPoolExecutor
import asyncio
class AsyncThreadPool(ThreadPoolExecutor):
_futures: List[asyncio.Future]
_loop: asyncio.AbstractEventLoop
def __init__(self, max_workers=None):
super().__init__(max_workers)
self._futures = []
def queue(self, fn):
self._loop = asyncio.get_event_loop()
fut = self._loop.create_future()
self._futures.append(fut)
self.submit(self._entry, fn,
Reference
이 문제에 관하여(답: 병발할 수 있습니다.선물나중에 비동기식 IO로 변환됩니다.장래대답: 병발할 수 있습니다.선물나중에 비동기식 IO로 변환됩니다.장래), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/lamnguyenx/answer-can-concurrent-futures-future-be-converted-to-asyncio-future-1p19텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)