AsyncFuture
from panda3d.core import AsyncFuture
- class AsyncFuture
Bases:
Bases:
TypedReferenceCount
This class represents a thread-safe handle to a promised future result of an asynchronous operation, providing methods to query its status and result as well as register callbacks for this future’s completion.
An AsyncFuture can be awaited from within a coroutine or task. It keeps track of tasks waiting for this future and automatically reactivates them upon this future’s completion.
A task itself is also a subclass of AsyncFuture. Other subclasses are not generally necessary, except to override the function of
cancel()
.Until the future is done, it is “owned” by the resolver thread, though it’s still legal for other threads to query its state. When the resolver thread resolves this future using
setResult()
, or any thread callscancel()
, it instantly enters the “done” state, after which the result becomes a read-only field that all threads can access.When the future returns true for
done()
, a thread can usecancelled()
to determine whether the future was cancelled or get_result() to access the result of the operation. Not all operations define a meaningful result value, so some will always return nullptr.In Python, the
cancelled()
,wait()
andget_result()
methods are wrapped up into a singleresult()
method which waits for the future to complete before either returning the result or throwing an exception if the future was cancelled. However, it is preferable to use theawait
keyword when running from a coroutine, which only suspends the current task and not the entire thread.This API aims to mirror and be compatible with Python’s Future class.
New in version 1.10.0.
Inheritance diagram
- __init__()
Initializes the future in the pending state.
- __init__(param0: AsyncFuture)
- cancel() bool
Cancels the future. Returns true if it was cancelled, or false if the future was already done. Either way,
done()
will return true after this call returns.In the case of a task, this is equivalent to remove().
- done() bool
Returns true if the future is done or has been cancelled. It is always safe to call this.
- property done_event string
- Getter
Returns the event name that will be triggered when the future finishes. See
setDoneEvent()
.- Setter
Sets the event name that will be triggered when the future finishes. Will not be triggered if the future is cancelled, but it will be triggered for a coroutine task that exits with an exception.
- static getClassType() TypeHandle
- getDoneEvent() str
Returns the event name that will be triggered when the future finishes. See
setDoneEvent()
.
- setDoneEvent(done_event: str)
Sets the event name that will be triggered when the future finishes. Will not be triggered if the future is cancelled, but it will be triggered for a coroutine task that exits with an exception.
- wait()
Waits until the future is done.
- wait(timeout: float)
Waits until the future is done, or until the timeout is reached.