You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ORPA-pyOpenRPA/Resources/WPy64-3720/python-3.7.2.amd64/Lib/site-packages/prompt_toolkit/eventloop/utils.py

43 lines
1.1 KiB

from __future__ import unicode_literals
import threading
from .future import Future
from .context import get_context_id, context
__all__ = [
'ThreadWithFuture',
]
class ThreadWithFuture(object):
"""
Wrapper around `Thread`.
:param daemon: If `True`, start as daemon.
"""
def __init__(self, target, daemon=False):
self.target = target
self.daemon = daemon
self.future = Future()
self._ctx_id = get_context_id()
def start(self):
"""
Start the thread, `self.future` will be set when the thread is done.
"""
def run():
# Mark this context (and thus `Application`) active in the current
# thread.
with context(self._ctx_id):
try:
result = self.target()
except BaseException as e:
self.future.set_exception(e)
else:
self.future.set_result(result)
t = threading.Thread(target=run)
if self.daemon:
t.daemon = True
t.start()