Result and friends: callable objects which will receive a value at a later point in time.
Project description
Result and friends.
A Result is the base class for several callable subclasses which will receive values at a later point in time, and can also be used standalone without subclassing.
A call to a Result will block until the value is received or the Result is cancelled, which will raise an exception in the caller. A Result may be called by multiple users, before or after the value has been delivered; if the value has been delivered the caller returns with it immediately. A Result's state may be inspected (pending, running, ready, cancelled). Callbacks can be registered via a Result's .notify method.
An incomplete Result can be told to call a function to compute its value; the function return will be stored as the value unless the function raises an exception, in which case the exception information is recorded instead. If an exception occurred, it will be reraised for any caller of the Result.
Trite example::
R = Result(name="my demo")
Thread 1: value = R() # blocks... print(value) # prints 3 once Thread 2 (below) assigns to it
Thread 2: R.result = 3
Thread 3: value = R() # returns immediately with 3
You can also collect multiple Results in completion order using the report() function::
Rs = [ ... list of Results of whatever type ... ] ... for R in report(Rs): x = R() # collect result, will return immediately because # the Result is complete print(x) # print result
Function after(Rs, R, func, *a, **kw)
After the completion of Rs
call func(*a, **kw)
and return
its result via R
; return the Result object.
Rs
: an iterable of Results.
R
: a Result to collect to result of calling func
. If None,
one will be created.
func
, a
, kw
: a callable and its arguments.
Class AsynchState
MRO: enum.Enum
State tokens for Results.
Function bg(func, *a, **kw)
Dispatch a Thread to run func
, return a Result to collect its value.
Class CancellationError
MRO: builtins.Exception
, builtins.BaseException
Raised when accessing result or exc_info after cancellation.
Class OnDemandFunction
MRO: _PendingFunction
, Result
Wrap a callable, run it when required.
Function report(LFs)
Generator which yields completed Results. This is a generator that yields Results as they complete, useful for waiting for a sequence of Results that may complete in an arbitrary order.
Class Result
Basic class for asynchronous collection of a result. This is also used to make OnDemandFunctions, LateFunctions and other objects with asynchronous termination.
Class ResultState
MRO: enum.Enum
State tokens for Results.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file cs.result-20181109.1.tar.gz
.
File metadata
- Download URL: cs.result-20181109.1.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.0 CPython/3.6.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cc763dc2e71933c220480d73f8dc83516d8667d94577ec90b2ae8a03bce22691 |
|
MD5 | 95f5de5981b249ed55f74632a5ee774a |
|
BLAKE2b-256 | e2802de61a9b19a4929a9eacfb8074bb826206f70a6d9d81c0acb9b52448686f |