20 lines
642 B
Python
20 lines
642 B
Python
#
|
|
# Copyright(c) 2020-2021 Intel Corporation
|
|
# Copyright(c) 2024 Huawei Technologies Co., Ltd.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
#
|
|
|
|
from concurrent.futures import ThreadPoolExecutor
|
|
|
|
|
|
def start_async_func(func, *args):
|
|
"""
|
|
Starts asynchronous task and returns an Future object, which in turn returns an
|
|
actual result after triggering result() method on it.
|
|
- result() method is waiting for the task to be completed.
|
|
- done() method returns True when task ended (have a result or ended with an exception)
|
|
otherwise returns False
|
|
"""
|
|
executor = ThreadPoolExecutor()
|
|
return executor.submit(func, *args)
|